Possible to have a Mouseover to do 2 seperate things?

Argo

Lifer
Apr 8, 2000
10,045
0
0
That should be pretty easy:


<img onmouseover="imagePopup(); gradualGrayOut();"/>
 

reverend boltron

Senior member
Nov 18, 2004
945
0
76
Originally posted by: Quintox
lol wow I feel sooooo stupid!

Don't feel stupid. I almost went as far as making a function that would call all of the functions I wanted to call. :)

function doLotsOfStuff()
{
imagepop();
grayscreen();
alert("I pwn n00bz, I can make lots of stuff happen on a mouseover");
}


<img onmouseover="doLotsOfStuff()" />