jQuery focus on first field trick
$(document).ready(function(){ | |
$("input[type=text]:first").focus(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$(document).ready(function(){ | |
$("input[type=text]:first").focus(); | |
}); |