Open In App

HTML DOM onmouseover event

The DOM onmouseover event in HTML occurs when the mouse pointer is moved onto an element or its children.

Supported Tags: It supports All HTML elements, EXCEPT: 



Syntax: 

<element onmouseover="myScript">
object.onmouseover = function(){myScript};
object.addEventListener("mouseover", myScript);

Example: In this example, we will see the use of DOM onmouseover event.






<!DOCTYPE html>
<html>
   
<head>
    <title>
        DOM onmouseover event
    </title>
</head>
 
<body>
    <h1 id="hID">
        GeeksforGeeks
    </h1>
    <h2>
        HTML DOM onmouseover 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 onmouseover event are listed below: 


Article Tags :