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 the best way (and I presume simplest way) to place the cursor at the end of the text in a input text element via JavaScript - after focus has been set to the element?

share|improve this question

17 Answers

up vote 45 down vote accepted

I faced this same issue (after setting focus through RJS/prototype) in IE. Firefox was already leaving the cursor at the end when there is already a value for the field. IE was forcing the cursor to the beginning of the text.

The solution I arrived at is as follows:

<input id="search" type="text" value="mycurrtext" size="30" 
       onfocus="this.value = this.value;" name="search"/>

This works in both IE7 and FF3

share|improve this answer
1  
Ah, nice and simple. Worked for me! – Xanthir May 4 '09 at 17:32
9  
Sadly doesn't work in Chrome... – teedyay Nov 4 '09 at 16:50
1  
What it will be for textarea? – Tareq Oct 21 '10 at 6:05
4  
Works in Chrome now (9.0.597.98) – Matt Feb 28 '11 at 10:05
2  
Also doesn't work in FF 8. The solution from chenosaurus seems to work though. – simon Nov 23 '11 at 16:13
show 4 more comments

After hacking around with this a bit, I found the best way was to use the setSelectionRange function if the browser supports it; if not, revert to using the method in Mike Berrow's answer (i.e. replace the value with itself).

I'm also setting scrollTop to a high value in case we're in a vertically-scrollable textarea. (Using an arbitrary high value seems more reliable than $(this).height() in Firefox and Chrome.)

I've made it is as a jQuery plugin. (If you're not using jQuery I trust you can still get the gist easily enough.)

I've tested in IE6, IE7, IE8, Firefox 3.5.5, Google Chrome 3.0, Safari 4.0.4, Opera 10.00.

It's available on jquery.com as the PutCursorAtEnd plugin. For your convenience, the code for release 1.0 is as follows:

// jQuery plugin: PutCursorAtEnd 1.0
// http://plugins.jquery.com/project/PutCursorAtEnd
// by teedyay
//
// Puts the cursor at the end of a textbox/ textarea

// codesnippet: 691e18b1-f4f9-41b4-8fe8-bc8ee51b48d4
(function($)
{
    jQuery.fn.putCursorAtEnd = function()
    {
    return this.each(function()
    {
        $(this).focus()

        // If this function exists...
        if (this.setSelectionRange)
        {
        // ... then use it
        // (Doesn't work in IE)

        // Double the length because Opera is inconsistent about whether a carriage return is one character or two. Sigh.
        var len = $(this).val().length * 2;
        this.setSelectionRange(len, len);
        }
        else
        {
        // ... otherwise replace the contents with itself
        // (Doesn't work in Google Chrome)
        $(this).val($(this).val());
        }

        // Scroll to the bottom, in case we're in a tall textarea
        // (Necessary for Firefox and Google Chrome)
        this.scrollTop = 999999;
    });
    };
})(jQuery);
share|improve this answer
personally I think this is the neatest way of doing this! Thanks for adding the source aswell! – Peter Sep 29 '10 at 11:35
Excellent solution, I hope that this works correctly in the future with new browser versions. Thanks mate! – Tx3 Apr 18 '11 at 6:37
works with ie8, ie9 and chrome – reconbot Jul 17 '12 at 15:00

Try this, it has worked for me:

//input is the input element

input.focus(); //sets focus to element
var val = this.input.value; //store the value of the element
this.input.value = ''; //clear the value of the element
this.input.value = val; //set that value back.  

For the cursor to be move to the end, the input has to have focus first, then when the value is changed it will goto the end. If you set .value to the same, it won't change in chrome.

share|improve this answer
This is like onfocus="this.value = this.value; – Tareq Oct 21 '10 at 6:17
8  
Setting the focus before setting the value is the key to get it work in Chrome. – techtonik May 19 '11 at 11:39
1  
Why put this. in front of input on lines 2, 3, and 4? We already know that input is the input element. Using this seems redundant. Good solution otherwise! – The111 Jul 23 '12 at 23:25
This worked for me - nice solution! – Jim Aug 15 '12 at 1:35

There's a much simpler way to accomplish this.

Using jQuery to set the listener, but it's not necessary otherwise

$(element).focus(function(){
  this.selectionStart = this.selectionEnd = this.value.length;
});

jQuery-less
Borrowing addEvent function from this answer.

// Basic cross browser addEvent
function addEvent(elem, event, fn){
if(elem.addEventListener){
  elem.addEventListener(event, fn, false);
}else{
  elem.attachEvent("on" + event, function(){ return(fn.call(elem, window.event)); });
}}

// Now on to the actual question:
addEvent(element,focus,function(){
  this.selectionStart = this.selectionEnd = this.value.length;
});
share|improve this answer
2  
worked for me in Chrome 24.0.1312.57, IE 9.0.8112 and Firefox 18.0.2 – Chris - Cii Tech Solutions Feb 14 at 14:55
2  
This is the answer that should be accepted. Thanks, works great! – tim peterson Mar 16 at 14:31
This is a good solution instead of an observation (kludge), is less code, and is more understandable then the alternatives discussed here. Thanks. – Derek Litz Mar 27 at 19:00
@Danny Beckett - I was trying to not dilute the answer by getting hung up on setting the listener - As stated, that's the only thing I used jQuery for. Even so, I added a jQuery-free version. Better? – Gary Apr 14 at 0:40
That's great. Changed my -1 to a +1! – Danny Beckett Apr 14 at 0:41
show 3 more comments
<script type="text/javascript">  
    function SetEnd(txt) {  
      if (txt.createTextRange) {  
       //IE  
       var FieldRange = txt.createTextRange();  
       FieldRange.moveStart('character', txt.value.length);  
       FieldRange.collapse();  
       FieldRange.select();  
       }  
      else {  
       //Firefox and Opera  
       txt.focus();  
       var length = txt.value.length;  
       txt.setSelectionRange(length, length);  
      }  
    }   
</script>  

This function works for me in IE9, Firefox 6.x, and Opera 11.x

share|improve this answer
Great, first ready solution which seems to work for both FF6 and IE8. – simon Nov 24 '11 at 9:03
3  
For some reason the popular answer didn't work for me. This worked perfect. – metric152 Jan 10 '12 at 19:39
Doesn't work for me in IE9. Error : SCRIPT16389: Unspecified error. – soham.m17 Mar 12 at 8:48

I've tried the following with quite great success in chrome

$("input.focus").focus(function () {
var val = this.value;
var $this = $(this);
$this.val("");
setTimeout(function () {
    $this.val(val);
}, 1);
});

Quick rundown:

It takes every input field with the class focus on it, then stores the old value of the input field in a variable, afterwards it applies the empty string to the input field.

Then it waits 1 milisecond and puts in the old value again.

share|improve this answer
perfect! All other's solutions are not work for me, only your solution is working for me. Maybe because I am using php to assign value to textarea, and js cannot detect the value so js must wait for 1 millisecond. – zac1987 Jan 15 '12 at 21:18
1  
@zac1987 that's probably not the case as php would render the html, the html would be loaded to the client and then the js would run. Chances are you're not waiting for a document ready event. – reconbot Jul 17 '12 at 13:45

Have a look at this article. It describes how to change text within an input or textarea element, but you can also use it to move the cursor.

share|improve this answer
2  
It supports IE, FireFox, Opera. But what about Google Chrome. – Tareq Oct 21 '10 at 6:15
old question, but just that you know: that link is down now – evotopid Jun 1 '12 at 15:42

Still the intermediate variable is needed, (see var val=) else the cursor behaves strange, we need it at the end.

<body onload="document.getElementById('userinput').focus();">
<form>
<input id="userinput" onfocus="var val=this.value; this.value=''; this.value= val;"
         class=large type="text" size="10" maxlength="50" value="beans" name="myinput">
</form>
</body>
share|improve this answer

If the input field just needs a static default value I usually do this with jQuery:

$('#input').focus().val('Default value');

This seems to work in all browsers.

share|improve this answer

In jQuery, that's

$(document).ready(function () {
  $('input').focus(function () {
    $(this).attr('value',$(this).attr('value'));
  }
}
share|improve this answer
1  
This function will only assign the value attribute to value when $('input') receives focus. It won't send the cursor to the end of the line. – vrish88 May 15 '10 at 6:48

I tried the suggestions before but none worked for me (tested them in Chrome), so I wrote my own code - and it works fine in Firefox, IE, Safari, Chrome...

In Textarea:

onfocus() = sendCursorToEnd(this);

In Javascript:

function sendCursorToEnd(obj) { 
var value = obj.value; //store the value of the element
var message = "";
if (value != "") {
    message = value + "\n";
};
$(obj).focus().val(message);}
share|improve this answer

Set the cursor when click on text area to the end of text... Variation of this code is...ALSO works! for Firefox, IE, Safari, Chrome..

In server-side code:

txtAddNoteMessage.Attributes.Add("onClick", "sendCursorToEnd('" & txtAddNoteMessage.ClientID & "');")

In Javascript:

function sendCursorToEnd(obj) {
    var value =  $(obj).val(); //store the value of the element
    var message = "";
    if (value != "") {
        message = value + "\n";
     };
    $(obj).focus().val(message);
    $(obj).unbind();
 }
share|improve this answer

I just found that in iOS, setting a textarea.textConent property will place the cursor at the end of the text in the textarea element every time. The behavior was a bug for my app, but seems to be something that you could use intentionally.

share|improve this answer
input = $('input'); 
input.focus().val(input.val()+'.'); 
if (input.val()) {input.attr('value', input.val().substr(0,input.val().length-1));}
share|improve this answer

Base on shirlymp's example, below code works better in Chrome and FireFox for me.

function moveCaretToEnd(obj) {
    var value =  $(obj).val(); //store the value of the element
    if (isNotBlank(value)) {
        $(obj).focus().val("");
        $(obj).focus().val(value);
        $(obj).unbind();
     }
}
share|improve this answer
My case is textarea. – gsun3000 Feb 1 '12 at 12:50

Here’s a jsFiddle demo of my answer. The demo uses CoffeeScript, but you can convert it to plain JavaScript if you need to.

The important part, in JavaScript:

var endIndex = textField.value.length;
if (textField.setSelectionRange) {
   textField.setSelectionRange(endIndex, endIndex);
}

I’m posting this answer because I already wrote it for someone else who had the same question. This answer doesn’t cover as many edge cases as the top answers here, but it works for me, and has a jsFiddle demo you can play with.

Here is the code from the jsFiddle, so this answer is preserved even if the jsFiddle disappears:

moveCursorToEnd = (textField) ->
  endIndex = textField.value.length
  if textField.setSelectionRange
    textField.setSelectionRange(endIndex, endIndex)

jQuery ->
  $('.that-field').on 'click', ->
    moveCursorToEnd(this)
<div class="field">
    <label for="pressure">Blood pressure</label>:
    <input class="that-field" type="text" name="pressure" id="pressure" value="24">
</div>
<p>
    Try clicking in the text field. The cursor will always jump to the end.
</p>
body {
    margin: 1em;
}

.field {
    margin-bottom: 1em;
}
share|improve this answer

Well, I just use:

$("#myElement").val($("#myElement").val());
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.