What is a JavaScript or jQuery solution that will select all of the contents of a textbox when the textbox receives focus?
|
|
|||||||||||||
|
|
|||||||||||||||||
|
|
|||||
|
|
|||||||
|
|
my solution is to use a timeout. Seems to work ok
|
|||
|
|
|
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:
Hope this helps people in the future... |
|||
|
|
|
U mad guys... Jquery is not JavaScript whitch is more easy to use in some cases. Look at this example:
from Css trics |
|||||
|
|
This will work, Try this -
Works in Safari/IE 9 and Chrome, I did not get a chance to test in Firefox though. |
||||
|
|
|
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.
The timeOut approach causes a strange behavior, and blocking every mouseup event you can not remove the selection clicking again on the input element. |
|||
|
|
|
Or easier, just select() - it will focus also...
|
||||
|
|