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 data parameter.
|
2
|
When using jQuery to hookup an event handler, is there any difference between using the click method
versus using the bind method
Other than bind's optional data parameter.
|
||
|
|
|
|
For what it's worth, from the jQuery source:
So no, there's no difference -
calls
|
|||
|
|
|
|
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. |
||
|
|
|
|
+1 for Matthew's answer, but I thought I should mention that you can also bind more than one event handler in one go using
which is the much cleaner equivalent to:
|
||||||
|
|
|
readability |
||
|
|
|
|
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 |
||
|
|