Web/API/GlobalEventHandlers/onmouseleave

From Get docs


The onmouseleave property of the GlobalEventHandlers mixin is the EventHandler for processing mouseleave events.

The mouseleave event is fired when a pointing device (usually a mouse) is moved off the element that has the listener attached.

Syntax

element.onmouseleave = handlerFunction;
var handlerFunction = element.onmouseleave;

handlerFunction is either null or a JavaScript function specifying the handler for the event.

Specification

Specification Status Comment
HTML Living StandardThe definition of 'onmouseleave' in that specification. Living Standard  

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
onmouseleave Chrome

Full support 30

Edge

Full support 12

Firefox

Full support 10

IE

Full support 5.5

Opera

Full support 17

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 10

Opera Android

Full support 18

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

Legend

Full support  
Full support


See also