Click to See Complete Forum and Search --> : setting focus to an input field


Kr|Z
07-01-2003, 11:54 AM
Anybody knows how to set the focus to an text input field,
So that when you load the page you can just start typing
without clicking on the text field?

Jona
07-01-2003, 11:57 AM
<script type="text/javascript">
window.onload = document.formName.textBoxName.focus();
</script>
<!-- The form: -->
<form action="" name="formName"><div>
<input type="text" name="textBoxName">
</div></form>


[J]ona