I understand that with javascript you can select the contents of a textbox with the following code (in jQuery):
$(\"#txt1\").select();
Is t
If you want to deselect a text box using jQuery do the following:
$(your_input_selector).attr('disabled', 'disabled'); $(your_input_selector).removeAttr('disabled');