Kod
<body><BR> <div><span id="el">element</span></div><BR> <div><span onmouseover="alert(event['type'])">element 2</span></div><BR> <script><BR> document.getElementById('el').onmouseover=function(){alert(event['type'])}<BR> </script><BR></body>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="pl"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body> <BR> <script> document.getElementById('el').onmouseover=function(e){ alert(e['type'] + this); } </body> </html>