I\'m trying to change the folder that my images are read from depending on the window width.
I have two folders that contain the different image sizes and I\'m wonde
You Can use resize()
$(window).resize(function() { if($(window).width() < 310 ) { $('img').attr('src','folder1'+filename); } if($(window).width() > 310 ) { $('img').attr('src','folder2'+filename); }
});