Skip to content

Instantly share code, notes, and snippets.

@NeilJS
Created December 12, 2012 17:49
Show Gist options
  • Save NeilJS/4269982 to your computer and use it in GitHub Desktop.
Save NeilJS/4269982 to your computer and use it in GitHub Desktop.
jQuery fix for click events in iOS
// Using Modernizr to detect mobile in this case. More specific for iOS may be better.
var event = (Modernizr.touch) ? "touchstart" : "click";
$("#element").bind(event, function(e) {
// do it
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment