Javascript examples for DOM Event:onmouseout
The onmouseout event occurs when the mouse pointer is moved out of an element, or out of one of its children.
Bubbles | Yes |
---|---|
Cancelable | Yes |
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" onmouseover="mouseOver()" onmouseout="mouseOut()">Mouse over me</h1> <script> function mouseOver() {/*from w ww . ja v a2 s . co m*/ document.getElementById("demo").style.color = "red"; } function mouseOut() { document.getElementById("demo").style.color = "black"; } </script> </body> </html>