OK, this has to be insanely easy but I honestly don't know how to do it. How do you automatically set the focus to a textbox when a web page loads?
Is there an HTML tag to do it or does it have to be done via javascript?
|
OK, this has to be insanely easy but I honestly don't know how to do it. How do you automatically set the focus to a textbox when a web page loads? Is there an HTML tag to do it or does it have to be done via javascript? |
|||
|
|
Any javascript book will tell you not to put handlers on the body element like that. I'f you're using jquery:
or prototype:
or plain javascript:
though keep in mind that this will replace other on load handlers, so look up addLoadEvent() in google for a safe way to append onload handlers rather than replacing. |
|||||||||
|
|
In HTML there's an To use the HTML 5 attribute and fall back to a JS option:
No jQuery, onload or event handlers are required, because the JS is below the HTML element. Edit: another advantage is that it works with JavaScript off in some browsers and you can remove the JavaScript when you don't want to support older browsers. Edit 2: Firefox 4 now supports the |
||||
|
|
|
You need to use javascript:
@Ben notes that you should not add event handlers like this. While that is another question, he recommends that you use this function:
And then put a call to addLoadEvent on your page and reference a function the sets the focus to you desired textbox. |
||||
|
|
|
Using plain vanilla html and javascript
For those out there using the .net framework and asp.net 2.0 or above, its trivial. If you are using older versions of the framework, you'd need to write some javascript similar to above. In your OnLoad handler (generally page_load if you are using the stock page template supplied with visual studio) you can use: C#
VB.NET
(* Note I removed the underscore character from the function name that is generally Page_Load since in a code block it refused to render properly! I could not see in the markup documentation how to get underscores to render unescaped.) Hope this helps. |
||||
|
|
|
|||||
|
|
IMHO, the 'cleanest' way to select the First, visible, enabled text field on the page, is to use jQuery and do something like this: $(document).ready(function() { $('input:text[value=""]:visible:enabled:first').focus(); }); Hope that helps... |
|||
|
|
|
You can do it easily by using jquery in this way:
by calling function in $(document).ready(). It means this function will execute when the DOM is ready. For more information about READY function, refer to : http://api.jquery.com/ready/ |
||||
|
|
|
As a general advice, I would recommend not stealing the focus from the address bar. (Jeff already talked about that.) Web page can take some time to load, which means that your focus change can occur some long time after the user typed the pae URL. Then he could have changed his mind and be back to url typing while you will be loading your page and stealing the focus to put it in your textbox. That's the one and only reason that made me remove Google as my start page. Of course, if you control the network (local network) or if the focus change is to solve an important usability issue, forget all I just said :) |
|||
|
|
refer this link . This will help you |
|||
|
|
|
Use the below code. For me it is working
|
||||
|
|