[Javascript] hide div in mouseout

Kat Bommarito katbomm at yahoo.com
Sun Dec 30 11:41:35 CST 2007


remove me from this list please


----- Original Message ----
From: Matt Evans <fatpratmatt at gmail.com>
To: JavaScript List <javascript at lists.evolt.org>
Sent: Thursday, December 20, 2007 12:06:12 PM
Subject: Re: [Javascript] hide div in mouseout

Hi,

Try this:

div.onmouseout = function(event) {
  if (checkMouseLeave(this, event)) {
    hide();
  }
};

I did a quick test and it seemed to work fine in FF2 and IE7 here

Thanks,
Matt
_______________________________________________
Javascript mailing list
Javascript at lists.evolt.org
http://lists.evolt.org/mailman/listinfo/javascript


      ____________________________________________________________________________________
Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.evolt.org/pipermail/javascript/attachments/20071230/569e3d5e/attachment.htm>


More information about the Javascript mailing list