input text on focus 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: focus on input
$("input:text:visible:first").focus();