heya all,
I have a couple of text boxes on a web page. How do I make 1 particular textbox have the initial focus? ie i can just start typing without having to click on the textbox
Printable View
heya all,
I have a couple of text boxes on a web page. How do I make 1 particular textbox have the initial focus? ie i can just start typing without having to click on the textbox
Code:<SCRIPT LANGUAGE="JavaScript">
document.all["Textbox"].focus();
</SCRIPT>
try putting it in the bodys onload event...
Code:<body onload="document.getElementById('text1').focus();">