RESOLVED:

$(window).load(function() {
        $("img.thumb:hidden").addClass("visible"); //catch all for all hidden
elements left behind
});

$(document).ready(function() {

        $("img.thumb").load(function() {
                $(this).addClass("visible"); //for the majority of thumbnails, 
this
will happen here
        });

Reply via email to