frankyonnetti
7/7/2013 - 9:03 PM

#jquery #ios iPhone force address bar to scroll up (old).

#jquery #ios iPhone force address bar to scroll up (old).

$(document).ready(function(){ 

  // check if mobile screen
  if ($(window).width() < 700) {
    
    // if mobile, force the address bar to scroll-up
    setTimeout(function () {
      window.scrollTo(0, 1);
    }, 1000);
      
  }

});