Skip to content

Instantly share code, notes, and snippets.

@hfknight
Created June 2, 2015 19:41
Show Gist options
  • Select an option

  • Save hfknight/1ae7e6ea671012fef9cc to your computer and use it in GitHub Desktop.

Select an option

Save hfknight/1ae7e6ea671012fef9cc to your computer and use it in GitHub Desktop.
EnableTouch(Active) State Support on iOS Safari
window.onload = function() {
if(/iP(hone|ad)/.test(window.navigator.userAgent)) {
document.body.addEventListener('touchstart', function() {}, false);
}
};
/* or add ontouchstart="" in element attributes */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment