Javascript examples for DOM Event:onmouseout
Create a <p> element and attach onmouseover event to change its cursor
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript"> window.onload=( function() {/*from w ww . ja v a 2 s.c om*/ var p = document.createElement("p"); p.innerHTML = 'Hello World'; p.onmouseover = function() { this.style.cursor = 'pointer'; }; document.body.appendChild(p); }); </script> </head> <body> </body> </html>