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\"
For newer versions of jQuery, where the .on() method is favored before the .delegate() or .live() methods, it won't work in this way, too
.on()
.delegate()
.live()
// wrong jQuery(selector).on('load', 'img', myFunc)
because the load event does not bubble
make it like this
jQuery(selector).find('img').on('load', myFunc)