본문 바로가기

Programming/JavaScript

image 리사이즈

  function  reSize(){


$("img").each(function(){

if($(this).width() > 500) $(this).width(500);

});

 

  }


<body onLoad="javascript:reSize();">

</body>