When using jQuery to hookup an event handler, is there any difference between using the click method
$().click(fn)
versus using the bind me
If you have Google Chrome, their developer tools have an event listener tool, select the element you want to spy its' event.
You'll find that trying the both ways lead to the same result, so they are equivalent.