Is there a simple way to set the focus (input cursor) of a web page on the first input element (textbox, dropdownlist, ...) on loading the page without having to know the id of the element?

I would like to implement it as a common script for all my pages/forms of my web application.

Thanks!

link|improve this question

REMARK if form is placed down in page in a way user has to scroll down page to see the form,by setting the focus will automatically scroll down the page like an anchor would do. This is not very good cause the user getting to such page would see it immediately scrolled down to the form position. I tested on Safari and FF (IE7 does not perform the page scrolling). – Marco Demaio Jun 5 '10 at 16:53
@Marco_Demaio My web app is structured in a way that every page has its input boxes near the top of the window. – splattne Jun 5 '10 at 20:34
what if the user resized the browser window height to something smaller than 768px. Page would scroll to the where you set focus. Anyway I wanted only to warn you in case you did not know about such minor issue, I didn't know about it either before doing some tests. – Marco Demaio Jun 7 '10 at 10:36
feedback

8 Answers

up vote 9 down vote accepted

You can also try jQuery based method:

$(document).ready(function() {
    $('form:first *:input[type!=hidden]:first').focus();
});
link|improve this answer
It Works! I'm starting to integrate jQuery in my web application. So, I think I will stick with this approach! Many thanks, Marko! – splattne Nov 11 '08 at 11:55
What happens if the first form on the page is hidden in this case? Or if the first element on the form is hidden via CSS? Surely this would fail. I am being pedantic of course but that's how I roll. – James Hughes Nov 11 '08 at 12:26
In my case (using ASP.NET) I have just ONE form which is never hidden. So this works for me. – splattne Nov 11 '08 at 14:53
feedback

Although this doesn't answer the question (requiring a common script), I though it might be useful for others to know that HTML5 introduces the 'autofocus' attribute:

<form>
  <input type="text" name="username" autofocus>
  <input type="password" name="password">
  <input type="submit" value="Login">
</form>

Dive in to HTML5 has more information.

link|improve this answer
feedback

If you're using the Prototype JavaScript framework then you can use the focusFirstElement method:

Form.focusFirstElement(document.forms[0]);
link|improve this answer
feedback

There's a write-up here that may be of use: Set Focus to First Input on Web Page

link|improve this answer
feedback
document.forms[0].elements[0].focus();

This can be refined using a loop to eg. not focus certain types of field, disabled fields and so on. Better may be to add a class="autofocus" to the field you actually do want focused, and loop over forms[i].elements[j] looking for that className.

Anyhow: it's not normally a good idea to do this on every page. When you focus an input the user loses the ability to eg. scroll the page from the keyboard. If unexpected, this can be annoying, so only auto-focus when you're pretty sure that using the form field is going to be what the user wants to do. ie. if you're Google.

link|improve this answer
feedback

You also need to skip any hidden inputs.

for (var i = 0; document.forms[0].elements[i].type == 'hidden'; i++);
document.forms[0].elements[i].focus();
link|improve this answer
I might be wrong, but this loop doesn't have defined behaviour if forms[0] has no hidden inputs. – xtofl Nov 10 '08 at 11:21
Exactly. It is used to skip any leading hidden inputs. And it is written under assumption that there are non-hidden fields in the form. I could have done it with jQuery as well (I'll post another answer) but you didn't mention you want jQuery involved. – Marko Dumic Nov 10 '08 at 21:00
feedback

Putting this code at the end of your body tag will focus the first visible, non-hidden enabled element on the screen automatically. It will handle most cases I can come up with on short notice.

<script>
    (function(){
        var forms = document.forms || [];
        for(var i = 0; i < forms.length; i++){
            for(var j = 0; j < forms[i].length; j++){
                if(!forms[i][j].readonly != undefined && forms[i][j].type != "hidden" && forms[i][j].disabled != true && forms[i][j].style.display != 'none'){
                    forms[i][j].focus();
                    return;
                }
            }
        }
    })();
</script>
link|improve this answer
1  
One thing to consider here is it may match elements that are not themselves hidden but an ancestor is. That would require tracking back up the DOM and testing each ancestors visibility which I feel is serious overkill for this kind of situation. – James Hughes Nov 10 '08 at 13:05
What about <input type="text" readonly="readonly"> I think you should add such a case to your code. Normally people don't want focus on a readonly input text field. Anyway nice code and +1 thanks! – Marco Demaio May 31 '10 at 15:15
Untested but I updated it with !forms[i][j].readonly != undefined – James Hughes Jun 1 '10 at 7:46
feedback

The most comprehensive jQuery expression I found working is (through the help of over here)

$(document).ready(function() {
    $('input:visible:enabled:first').focus();
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.