Last Updated : 15 Jun, 2023
The HTML DOM onmouseout event occurs when the mouse pointer is moved out of an element or its children.
Supported Tags: It supports All HTML elements, EXCEPT:
Syntax:
<element onmouseout="myScript">
object.onmouseout = function(){myScript};
object.addEventListener("mouseout", myScript);
Example: Using the addEventListener() method
HTML
<!DOCTYPE html>
<html>
<head>
<title>DOM onmouseout Event</title>
</head>
<body>
<h1 id="hID">
GeeksforGeeks
</h1>
<h2>DOM onmouseout Event</h2>
<script>
document.getElementById(
"hID").addEventListener(
"mouseover", over);
document.getElementById(
"hID").addEventListener(
"mouseout", out);
function over() {
document.getElementById(
"hID").style.color = "green";
}
function out() {
document.getElementById(
"hID").style.color = "black";
}
</script>
</body>
</html>
Output:
Supported Browsers: The browsers supported by HTML DOM onmouseout event are listed below:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4