up vote 11 down vote favorite
2
share [g+] share [fb]

This is probably very simple, but could somebody tell me how to get the cursor blinking on a text box on page load?

link|improve this question

76% accept rate
8  
We don't mind simple questions here. – DOK Oct 20 '09 at 0:53
thanks everyone! – chris Oct 20 '09 at 2:35
The answers below are fine as far as they go but I think you should read my answer before implementing any of them in your code. – Tim Down Oct 20 '09 at 23:09
feedback

4 Answers

up vote 14 down vote accepted

Set focus on the first text field:

 $("input:text:visible:first").focus();

This also does the first text field, but you can change the [0] to another index:

$('input[@type="text"]')[0].focus();

Or, you can use the ID:

$("#someTextBox").focus();
link|improve this answer
feedback

Sure:

<head>
    <script src="jquery-1.3.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(function() {
            $("#myTextBox").focus();
        });
    </script>
</head>
<body>
    <input type="text" id="myTextBox">
</body>
link|improve this answer
feedback

Think about your user interface before you do this. I assume (though none of the answers has said so) that you'll be doing this when the document loads using jQuery's ready() function. If a user has already focussed on a different element before the document has loaded (which is perfectly possible) then it's extremely irritating for them to have the focus stolen away.

You could check for this by adding onfocus attributes in each of your <input> elements to record whether the user has already focussed on a form field and then not stealing the focus if they have:

var anyFieldReceivedFocus = false;

function fieldReceivedFocus() {
    anyFieldReceivedFocus = true;
}

function focusFirstField() {
    if (!anyFieldReceivedFocus) {
        // Do jQuery focus stuff
    }
}


<input type="text" onfocus="fieldReceivedFocus()" name="one">
<input type="text" onfocus="fieldReceivedFocus()" name="two">
link|improve this answer
thanks for this. this is a good addition! – chris Oct 21 '09 at 2:19
feedback

HTML:

  <input id="search" size="10" />

jQuery:

$("#search").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.