Skip to content

Instantly share code, notes, and snippets.

@do9iigane
Last active March 4, 2016 14:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save do9iigane/5696305 to your computer and use it in GitHub Desktop.
Save do9iigane/5696305 to your computer and use it in GitHub Desktop.
jqueryのtapイベントハンドラについて
jQuery( ".selector" ).click(function( event ) { ... } )
//でも駄目なら
jQuery( ".selector" ).on( "tap", function( event ) { ... } )
//まだ駄目なら
jQuery( ".selector" ).live( "tap", function( event ) { ... } )
//それでも駄目なら
jQuery( ".selector" ).bind( "tap", function( event ) { ... } )
//これでも駄目なら
jQuery( ".selector" ).bind( "touchstart", function( event ) { ... } )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment