<h1 onmouseenter="mouseEnter()"> - Javascript DOM Event

Javascript examples for DOM Event:onmouseenter

Description

The onmouseenter event occurs when the mouse pointer is moved onto an element.

Summary

Bubbles No
Cancelable No
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" onmouseenter="mouseEnter()" onmouseleave="mouseLeave()">Mouse over me</h1>

<script>
function mouseEnter() {/*  www. j  ava 2s  .c om*/
    document.getElementById("demo").style.color = "red";
}

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

</body>
</html>

Related Tutorials