When using jQuery to hookup an event handler, is there any difference between using the click method
$().click(fn)
versus using the bind me
I find the .click() is way more logical, but I guess it's how you think of things.
$('#my_button').click(function() { alert('BOOM!'); });
Seems to be about as dead simple as you get.