Share via

Download of all windows logos

Jeff Borelli Partner 1 Reputation point
Mar 26, 2021, 6:13 PM

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.

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
42,636 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Pranam K 6 Reputation points
    Mar 29, 2021, 3:48 PM

    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);

    0 comments No comments

  2. Jeff Borelli Partner 1 Reputation point
    Mar 30, 2021, 1:00 PM

    I was hoping for a link. I'm not sure where to even run this. Can you elaborate?

    Thanks so much.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.