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?
|
|
|
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:
This works in both IE7 and FF3 |
|||||||||||||||||||||
|
|
After hacking around with this a bit, I found the best way was to use the I'm also setting 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:
|
||||
|
Try this, it has worked for me:
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. |
|||||||||||||
|
|
There's a much simpler way to accomplish this. Using jQuery to set the listener, but it's not necessary otherwise
jQuery-less
|
|||||||||||||||
|
This function works for me in IE9, Firefox 6.x, and Opera 11.x |
|||||||||
|
|
I've tried the following with quite great success in chrome
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. |
|||||||
|
|
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. |
|||
|
Still the intermediate variable is needed, (see var val=) else the cursor behaves strange, we need it at the end.
|
||||
|
|
|
If the input field just needs a static default value I usually do this with jQuery:
This seems to work in all browsers. |
|||
|
|
|
In jQuery, that's
|
|||||
|
|
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:
In Javascript:
|
||||
|
|
|
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:
In Javascript:
|
||||
|
|
|
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. |
|||
|
|
|
|||
|
|
|
Base on shirlymp's example, below code works better in Chrome and FireFox for me.
|
|||
|
|
|
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:
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:
|
|||
|
|