Guest User

Untitled

a guest
Feb 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. jQuery(function(){
  2. // Cascading series of finds to focus the most likely relevant field
  3. window.setTimeout(function() {
  4. jQuery("div.fieldWithErrors :input:visible:enabled:first, :input:visible:enabled:first").focus();
  5. jQuery(".tabs-container").not(".tabs-hide").find("div.fieldWithErrors :input:visible:enabled:first, :input:visible:enabled:first").focus();
  6. }, 100);
  7. });
Add Comment
Please, Sign In to add comment