// ロード時の処理 $(window).load(function(){ $(".news_right_block .news_block li img").each(function(){ var width = $(this).prop("width"); var height = $(this).prop("height"); if(width > height){ $(this).css("max-height", "100%"); }else{ $(this).css("max-width", "100%"); } $(this).css("visibility", "visible"); console.log(width + ":" + height); }); });