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 onmouseover Event Attribute

❮ HTML Event Attributes

Example

Execute a JavaScript when moving the mouse pointer over an image:

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

Definition and Usage

The onmouseover attribute fires when the mouse pointer moves over an element.

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


Browser Support

Event Attribute
onmouseover Yes Yes Yes Yes Yes

Syntax

<element onmouseover="script">

Attribute Values

Value Description
script The script to be run on onmouseover

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: onmouseover event


❮ HTML Event Attributes