You are here: Reference > JavaScript > client-side > event handling > events > onmouseout

onmouseout event | mouseout event

Browser support:
Occurs when the user moves the mouse pointer out of the element.
Use the onmouseover event to receive a notification when the user moves the mouse pointer into and the onmousemove event to receive a notification when the user moves the mouse pointer over an element.
Note: the onmouseout event is not fired during a drag operation. For that case, use the ondragleave event.

How to register:

In HTML:
<ELEMENT onmouseout="handler">

In JavaScript:
object.onmouseout = handler;
object.addEventListener ("mouseout", handler, useCapture);
9
object.attachEvent ("onmouseout", handler);
You can find the related objects in the Supported by objects section below.
The event object is accessible to all event handlers in all browsers. The properties of the event object contain additional information about the current event. To get further details about these properties and the possible event handler registration methods, please see the page for the event object.
For a complete list of events, see the page for Events in JavaScript.

Basic information:

Bubbles Yes
Cancelable No
Event object MouseEvent

Actions that invoke the onmouseout event:

  • Moving the mouse pointer out of an element.

The order of events related to the onmouseout event:

Internet Explorer Firefox, Opera, Google Chrome, Safari
  1. onmouseover
  2. onmouseenter
  3. onmousemove
  4. onmouseout
  5. onmouseleave
  1. onmouseover
  2. onmousemove
  3. onmouseout

Example HTML code 1:

This example illustrates the use of the onmouseover and onmouseout events:
<head>
    <script type="text/javascript">
        function OnMouseIn (elem) {
            elem.style.border = "2px solid blue";
        }
        function OnMouseOut (elem) {
            elem.style.border = "";
        }
    </script>
</head>
<body>
    <div style="background-color:#d0f0a0; width:200px" 
            onmouseover="OnMouseIn (this)" onmouseout="OnMouseOut (this)">
        Move your mouse pointer into and out of this element!
    </div>
</body>
Did you find this example helpful? yes no

Example HTML code 2:

This example dumps the order of events while the mouse moves into, over and out of an element:
<head>
    <script type="text/javascript">
        function DumpInfo (event) {
            var info = document.getElementById ("info");
            info.innerHTML += event.type + ", ";
        }
    </script>
</head>
<body>
    <div style="background-color:#d0f0a0; width:200px" 
            onmouseover="DumpInfo (event)" onmouseenter="DumpInfo (event)"
            onmousemove="DumpInfo (event)"
            onmouseout="DumpInfo (event)" onmouseleave="DumpInfo (event)">
        Move your mouse pointer into and out of this element!
    </div>
    <br /><br />
    <div id="info" style="background-color:#f0f0ff; font-weight:bold;"></div>
</body>
Did you find this example helpful? yes no

Supported by objects:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content