This defers the loading of iFrames until the page is done
//from https://youtu.be/G62aCRIlONU?t=14m59s
//<iframe data-src="https://www.example.com"></iframe>
document.addEventListener('load', () => {
Array.from(document.querySelectorAll('iframe'))
.forEach(iframe => iframe.src = iframe.dataset.src);
});