I want to be able to detect when the mouse leaves the window so I can stop events from firing while the user's mouse is elsewhere.
Any ideas of how to do this?
|
I want to be able to detect when the mouse leaves the window so I can stop events from firing while the user's mouse is elsewhere. Any ideas of how to do this? |
|||
|
|
|
This type of behavior is usually desired while implementing drag-drop behavior on an html page. The solution below was tested on IE 8.0.6, FireFox 3.6.6, Opera 10.53, and Safari 4 on an MS Windows XP machine.
And then use this method to attach an event handler to the document objects mouseout event:
Finally, here is an html page with the script embedded for debugging:
|
||||
|
|
|
This works for me:
|
|||||||
|
|
I haven't tested this, but my instinct would be to do an OnMouseOut function call on the body tag. |
|||
|
|
|
Maybe if you're constantly listening to OnMouseOver in the body tag, then callback when the event is not ocurring, but, as Zack states, this could be very ugly, because not all the browsers handle events the same way, there is even some possibility that you lose the MouseOver even by being over a div in the same page. |
||||
|
|
|
I take back what i said. It is possible. I wrote this code, works perfectly.
works in chrome, firefox, opera. Aint tested in IE but assume it works. edit. IE as always causes trouble. To make it work in IE, replace the events from window to document:
combine them for crossbrowser kick ass cursor detection o0 :P |
|||||||||||
|
|
You cant find out when the mouse leaves the window for one simple reason. The mouse coordinates in javascript record the last known coordinates of the cursor. So lets say the cursor is at 0,0 and you move it out of the window. The coordinates dont change to -42,-12 or something It still stays at 0,0 because its the last recorded coordinate |
|||
|
|