Skip to content

Instantly share code, notes, and snippets.

@PatelUtkarsh
Last active February 26, 2019 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PatelUtkarsh/508fefc0d6502085f04982d28b1a37ef to your computer and use it in GitHub Desktop.
Save PatelUtkarsh/508fefc0d6502085f04982d28b1a37ef to your computer and use it in GitHub Desktop.
Get all hostname from homepage <a>
var anchors = document.querySelectorAll('a');
var hosts = new Set();
anchors.forEach((anch) => {
hosts.add(anch.hostname);
});
console.table(Array.from(hosts));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment