JSFiddle - React, Tailwind, and code Playground
by drustTheCoder
HTML
<div id="wrapper">
<img src="http://static.foozoolkosh.com/static/images/logos/blogsky.png" data-src="http://static.foozoolkosh.com/static/images/logos/mihanblog.png" alt="img"></img>
<br>
<img src="http://static.foozoolkosh.com/static/images/logos/blogsky.png" data-src="" alt="img"></img>
</div>
JavaScript
$(document).load(function(){
alert("hi");
});
$(document).ready(function () {
setTimeout(function () {
$("#wrapper").append("started");
$("img").each(function () {
if ($(this).attr("data-src")){
$(this).attr("src", $(this).attr("data-src"));
}
});
}, 1000);
});