$(function () { $('.img-auto-width img').each(function () { $(this).load(function () { if ($(this).width() > 350) { $(this).width('100%'); $(this).height('auto'); } }); }); });