select all javascript input code example
Example 1: javascript select input text on focus
focusMethod = function getFocus() {
document.getElementById("myTextField").focus(); //select the input textfield and set the focus on it
}
Example 2: js select all
// This will select all of the text in the textarea or input called element
element.select();