Can anyone tell me how I can put the focus in a text box when my page loads up?
placing focus in textbox
First you have to identify your text box (with an id property, for example).
Then, a little javascript trick, to execute when the document loads up.
If you have any doubts on how to do it when the document loads, just let me know...
| Code: |
| <input type="text" id="test" /> |
Then, a little javascript trick, to execute when the document loads up.
| Code: |
| document.getElementById("test").focus() |
If you have any doubts on how to do it when the document loads, just let me know...
ok i've managed to get it to work, thanks for your help
No problem. We're always here when you need help 
