's Blog

Look at the sky, it's so beautiful

Detect Mouseout in IE678

| Comments

1
2
3
4
5
6
7
8
9
10
var mouseoutEventName = 'mouseout.namespace';
$(document)
  .unbind(mouseoutEventName)
  .bind(mouseoutEventName, function () {
    var e = window.event,
  from = e.relatedTarget || e.toElement;
    if (!from || from.nodeName.toUpperCase() === "HTML") {
  //mouse move out window(document)
    }
});

Comments