$(document).ready(function(){ $('#imagecycle img').each(function() { $(this).removeAttr('width').removeAttr('height'); }); $(window).resize(function() { $('#imagecycle img').each(function() { $(this).width(window.innerWidth); $('.tx-imagecycle-pi1').width(window.innerWidth); }); $('#imagecycle li').each(function() { $(this).width(window.innerWidth); }); }); });