FastLoad (Load images later)

by Tushar Thakare

HTML

<img src="#" data-delayedsrc="https://lh3.googleusercontent.com/ogw/ADGmqu9dEIvj4jMRM1LPk0DgycNPpuyIDkoKGdPKreGE=s83-c-mo" />

JavaScript

//Loads images after entire body has been loaded if you use delayedsrc attribute
document.addEventListener("DOMContentLoaded", function(){
   $('img').each(function(){
  $(this).attr('src', $(this).data('delayedsrc'));
});
});