Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML onmouseout Event Attribute

❮ HTML Event Attributes

Example

Execute a JavaScript when moving the mouse pointer out of an image:

<img onmouseout="normalImg(this)" src="smiley.gif" alt="Smiley">
Try it Yourself »

Definition and Usage

The onmouseout attribute fires when the mouse pointer moves out of an element.

Tip: The onmouseout attribute is often used together with the onmouseover attribute.


Browser Support

Event Attribute
onmouseout Yes Yes Yes Yes Yes

Syntax

<element onmouseout="script">

Attribute Values

Value Description
script The script to be run on onmouseout

Technical Details

Supported HTML tags: All HTML elements, EXCEPT: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title>

Related Pages

HTML DOM reference: onmouseout event


❮ HTML Event Attributes