Hi,
How do I select/highlight the default value inside the input on focus?
thanks
Hi,
How do I select/highlight the default value inside the input on focus?
thanks
Take a look at this article:
<input type="text" id="txtInput" />
and then:
$('#txtInput').click(function() {
var textbox = $(this);
textbox.focus();
textbox.select();
});