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 the [data] parameter of bind which will occur only at bind-time, once.
You can also specify custom events as the first parameter of bind.