Give focus to text boxes on load

This commit is contained in:
azammitdcarf
2010-09-13 01:30:26 +00:00
parent a6a3f586e0
commit 3ea0eaddb2
2 changed files with 8 additions and 1 deletions
@@ -5,4 +5,8 @@
if(typeof Custom_On_Load == 'function'){
Custom_On_Load();
}
$(document).ready(function() {
$(":text:visible:enabled:first").focus();
$("textarea:first").focus();
});
</script>