When using jQuery to hookup an event handler, is there any difference between using the click method
$().click(fn)
versus using the bind me
There is one difference in that you can bind custom events using the second form that you have. Otherwise, they seem to be synonymous. See: jQuery Event Docs