This example demonstrates how to assign an "onmouseenter" and "onmouseleave" event to a h1 element.
<!DOCTYPE html> <html> <body> <h1 id="demo" onmouseenter="mouseEnter()" onmouseleave="mouseLeave()">Mouse over me</h1> <script> function mouseEnter() {/* w ww.j a va2 s .c o m*/ document.getElementById("demo").style.color = "red"; } function mouseLeave() { document.getElementById("demo").style.color = "black"; } </script> </body> </html>
Bubbles: Cancelable: Event type: Supported HTML tags: | No No MouseEvent All HTML elements, EXCEPT: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title> |
---|