Javascript examples for DOM Event:Element Event Attribute
The onmouseenter event occurs when the mouse pointer is moved onto an element.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | All HTML elements, EXCEPT: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title> |
<!DOCTYPE html> <html> <body> <h1 id="demo">Mouse over me</h1> <script> document.getElementById("demo").onmouseenter = function() {mouseEnter()}; document.getElementById("demo").onmouseleave = function() {mouseLeave()}; function mouseEnter() {//from w w w.j ava2 s .com document.getElementById("demo").style.color = "red"; } function mouseLeave() { document.getElementById("demo").style.color = "black"; } </script> </body> </html>