|
|
 |
Re: FN-FORUM: asp question
date posted 1st September 2003 15:47
PAMELA WHITTAKER wrote:
> Hi,
> I have the following on a form named ContactForm. OnMouseOut and
> onMouseOver are failing because it can't find Image5. What should I put so
> that it can be found. I have tried self.document.Image5.src but that doesn't
> work either.
>
> width="81" height="19" hspace="0" vspace="0" alt="Submit"
> onMouseOver="self.document.ContactForm.Image5.src = preLoadArray[8].src"
> onMouseOut="self.document.ContactForm.Image5.src = preLoadArray[9].src"
> onClick="return validate()">
Try "document.ContactForm.Image5.src" or the shortcut "this.src" instead.
HTH
Matt
|
 |
|