vote up 4 vote down star
2

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.

flag

5 Answers

vote up 17 vote down check

For what it's worth, from the jQuery source:

jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," +
    "mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave," +
    "change,select,submit,keydown,keypress,keyup,error").split(","), function(i, name){

    // Handle event binding
    jQuery.fn[name] = function(fn){
        return fn ? this.bind(name, fn) : this.trigger(name);
    };
});

So no, there's no difference -

$().click(fn)

calls

$().bind('click',fn)
link|flag
vote up 0 vote down

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.

link|flag
vote up 10 vote down

+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 bind

$('#myDiv').bind('mouseover focus', function() {
    $(this).addClass('focus')
});

which is the much cleaner equivalent to:

var myFunc = function() {
    $(this).addClass('focus');
};
$('#myDiv')
    .mouseover(myFunc)
    .focus(myFunc)
;
link|flag
2  
+1 That binding multiple events is news to me and possibly quite useful. – cletus Feb 6 at 14:39
Yeah, that's great to know. – Matthew Maravillas Feb 7 at 0:36
vote up 0 vote down

readability

link|flag
vote up 5 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.