(function($) { jQuery(document).ready(function($) { try{ // photobox $(".photobox-gallery").each(function(){ $("#" + this.id).photobox("li a"); // or with a fancier selector and some settings, and a callback: $("#" + this.id).photobox("li:first a", { thumbs:false, time:0 }, imageLoaded); function imageLoaded(){ console.log("image has been loaded..."); } }) } catch(e){ console.log( e ); } }); })(jQuery);