Skip to content

Instantly share code, notes, and snippets.

@mnuno10
mnuno10 / Change Image By Size
Last active October 13, 2018 21:20
Shopify
<script>
var width = $(window).width();
var is_retina = window.devicePixelRatio > 1;
$('.home-slider-image').each(function(){
var img_src = $(this).attr('data-src');
if (!is_retina) {
img_src = img_src.replace('.jpg','.jpg');
}
$(this).attr('src', img_src);
});