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\"
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.