jQuery On, Delegate, Live, Bind comparisons

Here is a nice article addressing the pros and cons of jQuery .bind .delegate .live and .on. It also shows how in jQuery 1.7.1+ they all map to .on

http://www.elijahmanor.com/2012/02/differences-between-jquery-bind-vs-li...

Adding these comparisons do I don't have to go look them up each time

/* The jQuery .bind(), .live(), and .delegate() methods are just one
   line pass throughs to the new jQuery 1.7 .on() method */

// Bind
$( "#members li a" ).on( "click", function( e ) {} );
$( "#members li a" ).bind( "click", function( e ) {} );

// Live
$( document ).on( "click", "#members li a", function( e ) {} );
$( "#members li a" ).live( "click", function( e ) {} );

// Delegate
$( "#members" ).on( "click", "li a", function( e ) {} );
$( "#members" ).delegate( "li a", "click", function( e ) {} );

section: