Fires when the user moves the mouse pointer outside the boundaries of the object.
Questions tagged [onmouseout]
288 questions
1
vote
2 answers
image change on onmouseover, onmouseout, onclick events
I have a two images say, img1 and img2.
My Code :
function roll(id,img_name,event_name,img_id)
{
var state ;
if(event_name == 'mouseover')
{ state = false;rollover();}
else if(event_name == 'mouseout')
{state =…
Khushi