Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is a JavaScript or jQuery solution that will select all of the contents of a textbox when the textbox receives focus?

share|improve this question

10 Answers

up vote 84 down vote accepted
$(document).ready(function() {
    $("input:text").focus(function() { $(this).select(); } );
});
share|improve this answer
11  
Also just for extra info: "input[type=text]" now can be "input:text" regards – Ricardo Vega Jan 26 '09 at 22:29
1  
This doesn't seem to work for me on Chrome and the jQuery website says it is browser dependent. Can anyone else verify? – Kenny Wyland Sep 13 '12 at 20:21
16  
It looks like WebKit browsers interfere with this because of the mouseup event. I added this and it worked: $('input:text').mouseup(function(e) { return false; }); – Kenny Wyland Sep 13 '12 at 20:25
<input type="text" onfocus="this.select()" onMouseUp="return false" />
share|improve this answer
4  
It's much nice to keep markup separated from script. – Jonathan Sampson Jan 26 '09 at 18:08
3  
Usually........ – Derrick Apr 24 '12 at 23:31
10  
+ onmouseup="return false" to stop deselect on click – Anthony Johnston Jun 15 '12 at 7:27
Thank you @AnthonyJohnston! I was going INSANE really slowly... +1 – Chris Kempen Jul 23 '12 at 16:46
+1 for some kind of stopEvent for mouseup, or this doesn't work reliably. The downside of doing that is that once the cursor is in the field, clicking somewhere within the selected text to position the cursor there doesn't work; clicks are effectively disabled. Still, for situations where selecting the whole text on focus is desirable, it's probably the lesser of two evils. – enigment Aug 30 '12 at 13:23
$(document).ready(function() {
    $("input:text")
        .focus(function () { $(this).select(); } )
        .mouseup(function (e) {e.preventDefault(); });
});
share|improve this answer
1  
This answer was the winner for me! Thanks! – Matthew Patrick Cashatt May 1 at 16:59
$(document).ready(function() {
  $("input[type=text]").focus().select();
});
share|improve this answer
3  
+1 because this was what I needed, but it's not the answer to THIS question. – Cros Dec 9 '09 at 12:05
Thanks, yes it was my mistake. – Tomas Kirda Dec 11 '09 at 21:06

my solution is to use a timeout. Seems to work ok

$('input[type=text]').focus(function() {
    var _this = this;
    setTimeout(function() {
        _this.select();
    }, 10);
});
share|improve this answer

The answers here helped me up to a point, but I had a problem on HTML5 Number input fields when clicking the up/down buttons in Chrome.

If you click one of the buttons, and left the mouse over the button the number would keep changing as if you were holding the mouse button because the mouseup was being thrown away.

I solved this by removing the mouseup handler as soon as it had been triggered as below:

    $("input:number").focus(function () {
        var $elem = $(this);
        $elem.select().mouseup(function (e) {
            e.preventDefault();
            $elem.unbind(e.type);
        });
    });

Hope this helps people in the future...

share|improve this answer

U mad guys... Jquery is not JavaScript whitch is more easy to use in some cases.

Look at this example:

<textarea rows="10" cols="50" onclick="this.focus();this.select()">Text is here</textarea>

from Css trics

share|improve this answer
Maybe that's OK if you don't mind getting your markup and code all mixed up; most people try to keep their script 'unobtrusive' nowadays. Oh... and jQuery is Javascript. – Andrew Barber Feb 22 at 9:52
Thanks for the suggestion of onclick, works great. Not everyone uses jQuery so glad to see another option. – user918854 Apr 25 at 19:57

This will work, Try this -

<input id="textField1" onfocus="this.select()" onmouseup="return false" /> 

Works in Safari/IE 9 and Chrome, I did not get a chance to test in Firefox though.

share|improve this answer

This is not just a Chrome/Safari issue, I experienced a quite similar behavior with Firefox 18.0.1. The funny part is that this does not happen on MSIE! The problem here is the first mouseup event that forces to unselect the input content, so just ignore the first occurence.

$(':text').focus(function(){
    $(this).one('mouseup', function(event){
        event.preventDefault();
    }).select();
});

The timeOut approach causes a strange behavior, and blocking every mouseup event you can not remove the selection clicking again on the input element.

share|improve this answer

Or easier, just select() - it will focus also...

$(document).ready(function() {
  $("input[type=text]").select();
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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