function reSize(){
$("img").each(function(){
if($(this).width() > 500) $(this).width(500);
});
}
<body onLoad="javascript:reSize();">
</body>
'Programming > JavaScript' 카테고리의 다른 글
ajaxform 에서 파라미터가 안넘어갈때 (0) | 2015.08.19 |
---|---|
서버시간 가져오기 (0) | 2014.06.27 |
confirm - 확인, 취소 알림 창 (0) | 2014.05.27 |
새창 띄우기(팝업 창) (0) | 2014.05.22 |
inputBox 추가시 아래로 생성되게. (0) | 2014.05.16 |