How can I make it so when you click inside a textarea, its entire content gets selected?
And eventually when you click again, to deselect it.
|
How can I make it so when you click inside a textarea, its entire content gets selected? And eventually when you click again, to deselect it. |
|||||||
|
|
To stop the user from getting annoyed when the whole text gets selected every time they try to move the caret using their mouse, you should do this using the jsFiddle: http://jsfiddle.net/NM62A/ Code:
jQuery version:
|
|||||||||||||||
|
|
Better way, with solution to tab and chrome problem and new jquery way
|
|||
|
|
|
I ended up using this:
|
|||||||||||||
|
|
JQuery: Selecting Text in an Element (akin to highlighting with your mouse) :) Using the accepted answer on that post, you can call the function like this:
|
|||||||||||
|
|
Slightly shorter jQuery version:
It handles the Chrome corner case correctly. See http://jsfiddle.net/Ztyx/XMkwm/ for an example. |
|||
|
|