topical media & game development
#javascript-code-12-w3c.js / js
// Find the first <form> element and attach a ‘submit’ event handler to it
document.getElementsByTagName(“form”)[0].addEventListener(‘click’,function(e){
// Stop all form submission attempts
return stopDefault( e );
}, false);
// Attach a keypress event handler to the <body> element of the document
document.body.addEventListener(‘keypress’, myKeyPressHandler, false);
// Attach an load event hanlder to the page
window.addEventListener(‘load’, function(){ … }, false);
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.