Alright i have a asp.net textbox and i want to set cursor inside textbox after page loaded like when you open google.
I only need set cursor inside textbox code.
I tried this but not working
$('txtSendTo').focus();
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If
txtSendTois anid, you need a#$('#txtSendTo').focus();If
txtSendTois aclass, you need a.$('.txtSendTo').focus();Or, if there is only one
textboxon the page$('textbox').focus();Also make sure the page is fully loaded before you try to search the dom: