Skip to content

Instantly share code, notes, and snippets.

@sharoonthomas
Created March 30, 2013 05:20
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 sharoonthomas/5275489 to your computer and use it in GitHub Desktop.
Save sharoonthomas/5275489 to your computer and use it in GitHub Desktop.
Delegate touchstart events on iPad to click events
if (navigator.userAgent.match(/iPad/i)) {
$('chozen-widget-created').bind('touchstart', function(event) {
$(this).trigger('click');
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment