Setting focus to textbox control using JavaScript.

Vishalneeraj-24503
Posted by Vishalneeraj-24503 under JavaScript category on | Points: 40 | Views : 728
Below code snippet is used to set the focus to the textbox control by using JavaScript using focus() method :-

document.getElementById("TextboxControlName").focus();

Comments or Responses

Login to post response