Zápisnice z verejnej obchodnej súťaže Zápisnice z verejnej obchodnej súťaže nov 13 bachledka Zápisnice z verejnej obchodnej súťaže 1_1 1_2 1_3 2_1 2_2 3_1 3_2 0 Likes 0Akcie0000 /* URL: https://github.com/AmigoDheena/amigolazy Author: Amigo Dheena */ let amframe = document.querySelectorAll(".amigolazy"); window.onload = function(){ for(let i=0; i<amframe.length;i++){ let amsrc = amframe[i]; let amdata = amsrc.getAttribute("data-src"); let datanew = amsrc.getAttribute("lazy"); if(datanew === null){ datanew = 1500; } setTimeout(function(){ amframe[i].setAttribute("src",amdata); console.info(datanew + "ms Lazyloaded " + amframe[i].src); }, datanew); } }