HTML
<div class="test"><img src="1.jpg"><img src="2.jpg"><img src="3.jpg"></div>
<div class="test"><img src="4.jpg"></div>
jQuery
var max = 100;
var img = $('div.test img');
if (img.width() > max) {
img.width = max;
}
.test
クラス内で見つかったすべての画像<div>
を、定義された最大幅に再スケーリングしてほしい。