add focus on input code example
Example 1: set focus on input field javascript
window.onload=function(){
document.getElementById("id_here").focus();
}
// id_here = put the id of the HTML element where you want to set focus.
Example 2: focus on input
$("input:text:visible:first").focus();