[Javascript] hide div in mouseout

Matt Evans fatpratmatt at gmail.com
Thu Dec 20 14:06:12 CST 2007


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



More information about the Javascript mailing list