vote up 0 vote down star

How do some sites automatically select a input field when you enter a page? Like YouTube's login page it selects the Username field automatically

This site too, on page Ask Question for example, it selects the Title field.

How do they do this? My guess would be javascript

But how?

flag
1  
@Daniel Moralea: Just a note, the action you are referring to is known as focus. Selection is a different beast. – vmarquez Aug 31 at 1:51

3 Answers

vote up 3 vote down
<head>
<!-- set focus to a field with the name "searchcontent" in my form -->
<script type="text/javascript">
    function setfocus(a_field_id) {
        $(a_field_id).focus()
    }
</script>
</head>

<body onload="setfocus('customervalue');">

Customer: <input name="customer" id="customervalue" />

</body>

From here: http://lena.franken.de/software/javascript/index.html

link|flag
vote up 1 vote down

Use:

someObject.focus()

Reference:

http://www.w3schools.com/HTMLDOM/met%5Fanchor%5Ffocus.asp

link|flag
vote up 1 vote down

In The Future: <input type="text" autofocus> :-)

Not a good idea to use onload on body either, use an onDomReady-event, for instance from YUI or jQuery or some custom script instead.

link|flag

Your Answer

Get an OpenID
or

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