PDA

View Full Version : Changing object style on mouse event


raven
03-13-2003, 10:57 AM
I often use the structure:

onmouseover="this.src='image_over.gif';

to change an image on a mouseover event.


I have tried to use:

onmouseover="this.class='altButton';

to change the style of a button on the mouseover event.


This however doesn't work! Can anyone point me in the right direction?

brothercake
03-13-2003, 11:26 AM
try

this.className

raven
03-13-2003, 11:31 AM
Brilliant, thank you.