Select text in the textbox
How to select text in the textbox with javascript? document.getElementById(“myTextBoxItem”).select(); Shorter way if you Using jQuery javascript framework: $(“myTextBoxItem”).select(); I am sure most of the people say, why do we need this functionality? Those who know, that this can save at least 2 clicks in the sequence performing some action(If u don’t understand read more [...]