Skip to content

Instantly share code, notes, and snippets.

@alanning
Created November 17, 2013 15:49
Show Gist options
  • Save alanning/7514798 to your computer and use it in GitHub Desktop.
Save alanning/7514798 to your computer and use it in GitHub Desktop.
fix bootstrap dropdown unclickable issue on iOS - https://github.com/twitter/bootstrap/issues/4550
// fix bootstrap dropdown unclickable issue on iOS
// https://github.com/twitter/bootstrap/issues/4550
$(document).on('touchstart.dropdown.data-api', '.dropdown-menu', function (e) {
e.stopPropagation()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment