Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone enlighten me on the jQuery delegate, what events are handled and what aren't. The follow code doesn't work

$("#browser").delegate( ".photo", {
    "load": function(e) {
        alert("photo loaded");
    }
});

but the following code work

$(".photo").load( function(e) {
    alert("photo loaded");
} );

I also try to delegate changeData event to a class which doesn't work as well

$("#browser").delegate( ".thumbnail", {
    "changeData": function(e, prop, value) {
        alert( prop + " = " + value );
    }
});

but the following code work

$(".thumbnail").bind( "changeData", function(e, prop, value) {
    alert( prop + " = " + value );
}
share|improve this question
Both answers you've gotten so far are correct. You're using the wrong syntax, and you cannot use live and delegate with those events. – Matt Ball Mar 13 '11 at 16:36

2 Answers

up vote 6 down vote accepted

Not:

$("#browser").delegate( ".photo", {
    "load": function(e) {
        alert("photo loaded");
    }
});

But:

$("#browser").delegate( ".photo", "load",
    function(e) {
        alert("photo loaded");
});

And you cannot use live and delegate with those events, because they don't bubble.

share|improve this answer
I'm passing an object with multiple event: function() pair into one delegate, and it works on 1.5.1 for me ;) – jhloke Mar 14 '11 at 3:23
Well, it's not in the documents, that doesn't mean that it doesn't work. Anyways, those events can't be used with live or delegate. So you'll have to find another way to achieve this. Like update the event binding on change. – Aidiakapi Mar 14 '11 at 11:32

These events do not bubble, so they cannot be used with live or delegate.

share|improve this answer
Thanks. I thought load is a native javascript event, which should bubble. Do you mean the changeData trigger by jquery api itself is not a custom event or doesn't bubble. Anyway I can use delegate on both event? – jhloke Mar 14 '11 at 3:01
I do look into the jquery code of changeData, and modify the triggerHandler to trigger so it can bubble. But I suspect it sometimes crash google chrome. – jhloke May 21 '11 at 3:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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