JQuery selecting and binding

The following selects all the anchor (link) tags that have a class="joy" and binds (joins) it to the "click" event:

$('a.joy').click(function( ) {                      

return false;

});

/* Close the click function with the return false; method to keep the link from trying to load another page into the browser */