Cursor appears automatically in a text box.
Question
How to make the cursor appear automatically in a text box?
Answer
Use JavaScript
<input id="textbox1" type="text" />
<script type="text/javascript">document.getElementById("textbox1").focus()</script>
2009
Web Development - XHTML CSS JavaScript jQuery.