Skip to content

Instantly share code, notes, and snippets.

@GC-Mark
Created April 15, 2015 12:59
Show Gist options
  • Save GC-Mark/0f880dff022fa3b7bcec to your computer and use it in GitHub Desktop.
Save GC-Mark/0f880dff022fa3b7bcec to your computer and use it in GitHub Desktop.
iOS fixed element after input fix
$(document).on('blur', 'input, textarea', function () {
setTimeout(function () {
window.scrollTo(document.body.scrollLeft, document.body.scrollTop);
}, 0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment