Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save illucent/e1052d158956cccb5f29 to your computer and use it in GitHub Desktop.

Select an option

Save illucent/e1052d158956cccb5f29 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