Skip to content

Instantly share code, notes, and snippets.

@antidis
Last active December 10, 2015 12:38
Show Gist options
  • Save antidis/4435753 to your computer and use it in GitHub Desktop.
Save antidis/4435753 to your computer and use it in GitHub Desktop.
Mobile Safari screwing up your position: fixed content when you blur out of a form field? This will solve it.
fix_mobile_scrolling = function() {
var current_body_scroll_top = $('body').scrollTop();
window.setTimeout(function (s) {
$('body').scrollTop(s + 1);
window.setTimeout(function (s) {
$('body').scrollTop(s);
}, 10, s)
}, 10, current_body_scroll_top);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment