$(function() { photolist_change(); initphotoswipefromdom('#photolist_i1','li'); }); $(window).resize(function(){ photolist_change(); }) function photolist_change(){ $("#photolist_i1 a").height($("#photolist_i1 a").width()* 0.66); $("#photolist_i1 a").css("line-height",$("#photolist_i1 a").height()+"px"); $("#photolist_i1 img").css({ "max-width":$("#photolist_i1 a").width(), "max-height": $("#photolist_i1 a").height() }); $("#photolist_i1").find("a").each(function(index, element){ //console.log($(this).width()); var that = this; imgready($(this).attr("href"), function () { var size = (this.width) + "x" + (this.height); $(that).attr("data-size",size); }); }); }