Click to See Complete Forum and Search --> : Change ALT text in image with JS


maydawg
07-06-2004, 03:43 PM
I am creating code that alternates ads on a website. Is it possible to change the ALT text for each of these images using javascript?

theBody44
07-06-2004, 03:55 PM
Use something like thisdocument.myImage.alt='Change ALT to this';Where myImage is the name of your image.

maydawg
07-06-2004, 03:56 PM
Thanx - I should've guessed that.