Skip to content

Instantly share code, notes, and snippets.

@daveespionage
Created March 4, 2013 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daveespionage/5084444 to your computer and use it in GitHub Desktop.
Save daveespionage/5084444 to your computer and use it in GitHub Desktop.
ios 6 webkit with jquery for cross-browser touch issue fix
(function ($, window, document, undefined) {
$(function(){
// ios6 scroll issue fix
$(document).on('scroll', function () {
// trigger touch event
$(document).trigger('touchend');
});
});
}(jQuery, window, document));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment