Hi, I managed to implement a slide show in java script, but it want the a comment to be displayed under each image in the slide show, say something like Image 1 for 1st image, image 2 for 2nd image like that. I am clue less how i can do that.. Can i use any element like text or some thing and change any of its properties to acheive this.. Thanks a lot.. Regards,
hmm...since you managed the slide-show then it means that you understand (or at least the implication is there..) arrays. Given that- create an array with text for each index of the array that holds the images. Then when you carry out your image change function- you can also change your txt. something like document.getElementById('sldShowTxt').innerText = sldShowTxtArray; or something like that PS: Do an appropriate google search to adjust the innerText in FireFox (innerText only works in IE)