up vote 4 down vote favorite
share [g+] share [fb]

How to move the cursor position into a input text box by clicking a label tag?

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

Use the for attribute. No need for any Javascript.

<label for="name">Name</label><input type="text" id="name" name="name" />

The browser will do the magic all by itself.

link|improve this answer
1  
<label>Name <input type="text" name="name" /></label> would do the thing too :) – Anpher Aug 27 '10 at 10:52
Hi Anpher, that is how the markup structure is currently although this doesn't work...I have a label wrapped around input text field. I want the cursor to jump to the input text field when I click the label – Nasir Aug 27 '10 at 11:22
1  
FYI: IE6 doesn't support the version without for. And the for attribute refers to the id of the input not its name. – RoToRa Aug 27 '10 at 15:43
feedback

Don't know why Yi Jiang's answer wouldn't be working, but it's trivial in jQuery if you prefer to do it that way

$('#myLabel').click(function() {
    $('#myTextBox').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.