Skip to content

Instantly share code, notes, and snippets.

@agile
Created July 23, 2008 19:59
Show Gist options
  • Save agile/1879 to your computer and use it in GitHub Desktop.
Save agile/1879 to your computer and use it in GitHub Desktop.
jQuery(function(){
// Cascading series of finds to focus the most likely relevant field
window.setTimeout(function() {
jQuery("div.fieldWithErrors :input:visible:enabled:first, :input:visible:enabled:first").focus();
jQuery(".tabs-container").not(".tabs-hide").find("div.fieldWithErrors :input:visible:enabled:first, :input:visible:enabled:first").focus();
}, 100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment