JSFiddle - React, Tailwind, and code Playground
HTML
<img src="sample.jpg" alt="sample alt" />
JavaScript
$('img').each(function(i, el){
$(this).attr('data-src', $(this).attr('src')).removeAttr('src');
});
<img src="sample.jpg" alt="sample alt" />
$('img').each(function(i, el){
$(this).attr('data-src', $(this).attr('src')).removeAttr('src');
});