<h1 onmouseover="mouseOver()"> - Javascript DOM Event

Javascript examples for DOM Event:onmouseover

Description

The onmouseover event occurs when the mouse pointer is moved onto an element, or onto one of its children.

Summary

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

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<h1 id="demo" onmouseover="mouseOver()" onmouseout="mouseOut()">Mouse over me</h1>

<script>
function mouseOver() {/*from   w  w  w  .  j  a v a 2  s  . c o  m*/
    document.getElementById("demo").style.color = "red";
}

function mouseOut() {
    document.getElementById("demo").style.color = "black";
}
</script>

</body>
</html>

Related Tutorials