I really liked the .live method as it was straightforward and essentially not much different than your standard event handler.
Alas, it was deprecated and I\'m left
jQuery(document).on('click', '#who_me', function(){ alert('test123'); return false; });
should be the equivalent of jQuery.live('#who_me', function() { // code here });
jQuery.live('#who_me', function() { // code here });