Skip to content

Instantly share code, notes, and snippets.

@bwoods
Created January 24, 2020 22:30
Show Gist options
  • Save bwoods/5e82228f34a294bf83d2529652521adc to your computer and use it in GitHub Desktop.
Save bwoods/5e82228f34a294bf83d2529652521adc to your computer and use it in GitHub Desktop.
All links on a webpage
Array.prototype.map.call(document.querySelectorAll('nav a'), function (e) { return e.getAttribute('href'); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment