Skip to content

Instantly share code, notes, and snippets.

@jocoonopa
Created November 20, 2013 01:33
Show Gist options
  • Save jocoonopa/7556023 to your computer and use it in GitHub Desktop.
Save jocoonopa/7556023 to your computer and use it in GitHub Desktop.
$( 'selector' ).on( event, fn);
//Its equal to
$( 'selector' ).bind( event, fn);
$( document ).on( event, 'selector', fn);
//Equal to
$( 'selector' ).live( event, fn);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment