davidpetrey
6/8/2016 - 10:31 PM

jQuery scroll up past menu on mobile

jQuery scroll up past menu on mobile

  //jQuery(document).ready(function(){
  //		jQuery('html,body').animate({scrollTop: jQuery(".expert_right").offset().top-0}, 'slow');
  //	return false;
  //	});

  // OR THIS
  
jQuery(window).load(function(e) {
	setTimeout(function() {
    var winwidth = jQuery(window).width();
	    //alert(winwidth);
    if(winwidth < 768){
  	  jQuery('html,body').animate({scrollTop: jQuery(".expert_right").offset().top-0}, 'slow');
		  return false;
    }
  }, 1);
});