cycling jQuery_Succinctly | Page 75
$('ul').click(function (event) { // Attach click handler to
and pass event object. // event.target is the
. $(event.target).parent().remove(); // Remove
using parent() return false; // Cancel default browser behavior, stop propagation. }); })(jQuery);