Not Monitored
Tag not monitored by Microsoft.
42,096 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am looking for a download area of all windows logos for an article. Is there such a place> I've been looking for days.
var images = document.getElementsByTagName('img');
var srcList = [];
var i = 0;
setInterval(function(){
if(images.length > i){
srcList.push(images[i].src);
var link = document.createElement("a");
link.id=i;
link.download = images[i].src;
link.href = images[i].src;
link.click();
i++;
}
},1500);
I was hoping for a link. I'm not sure where to even run this. Can you elaborate?
Thanks so much.