4
votes
5answers
3k views
jQuery: $().click(fn) vs. $().bind(’click’,fn);
When using jQuery to hookup an event handler, is there any difference between using the click method
$().click(fn)
versus using the bind method
$().bind('click',fn);
Other than bind's optional …
