Published in: JavaScript
Unobtrusively attaches an onLoad event to the window.
window.onload = function() { document.getElementById("email").focus(); };
You need to login to post a comment.
Pro JavaScript Techniques
Pro JavaScript Techniques is the ultimate JavaScript book for the modern web developer. It provides everything you need to know about modern JavaScript, and shows what JavaScript can do for your web sites. This book doesn't waste any time looking at things you already know, like basic syntax and structures.
tylerhall on 11/01/06
1 person has marked this snippet as a favorite
Published in: JavaScript
Unobtrusively attaches an onLoad event to the window.
window.onload = function() { document.getElementById("email").focus(); };
You need to login to post a comment.