jQuery(function($){ //autofocus var form_errors = jQuery(".fb_invalid input"); if(form_errors.length > 0){ jQuery('html, body').animate({ scrollTop: form_errors.first().offset().top - 40 }, 1000); } var form_send = jQuery("h3.send"); if(form_send.length > 0){ jQuery('html, body').animate({ scrollTop: form_send.first().offset().top - 40 }, 1000); } });