The onmousemove attribute works when the pointer moves over an element.
Supported Tags: All HTML elements, EXCEPT:
- <base>
- <bdo>
- <br>
- <head>
- <html>
- <iframe>
- <meta>
- <param>
- <script>
- <style>
- <title>
Syntax:
<element onmousemove = "script">
Attribute Value: This attribute contains single value script which works when onmousemove attribute called.
Example:
html
<!DOCTYPE html>
< html >
< head >
< title >onmousemove event attribute</ title >
</ head >
< body >
< center >
< h2 >onmousemove event attribute</ h2 >
< img onmousemove = "bigSize(this)" onmouseout = "normalSize(this)"
border = "1px solod black" src =
alt = "gfg" width = "300" height = "100" >
< script >
function bigSize(val) {
val.style.height = "200px";
val.style.width = "600px";
}
function normalSize(val) {
val.style.height = "100px";
val.style.width = "300px";
}
</ script >
</ body >
</ html >
|
Output:
Before:

After:

Supported Browsers: The browser supported by onmousemove attribute are listed below:
- Chrome
- Internet Explorer
- Firefox
- Safari
- Opera
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
10 Aug, 2021
Like Article
Save Article