How to set focus when there are many textbox using jquery?
Demo
Use Document.ready
Try this..
$(function(){
$("#txtDate").focus();
});
write it using jQuery function as
$(function() {
$("#txtDate").focus();
});
or if it also doesn't work then try
$(function() {
$(document.getElementById("txtDate")).focus();
});
This will work
$('input').click(function() {
$(this).focus();
})