gish Posted February 29, 2008 Share Posted February 29, 2008 hi Can anyone tell me if I have a form with only a textbox and a submit button. Is there a way when loading or refreshing the page that the textbox gets highlighted straight away without me having to click or tab in the box. I want to be able to start typing? gish Quote Link to comment Share on other sites More sharing options...
The Little Guy Posted February 29, 2008 Share Posted February 29, 2008 Like so: <body onload="document.form1.myField.focus()"> <form id="form1" name="form1"> <input type="text" name="myField" /> <input type="submit" name="myButton" /> </form> Quote Link to comment Share on other sites More sharing options...
gish Posted February 29, 2008 Author Share Posted February 29, 2008 thanks that is exactly what i am looking for. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.