Use Javascript to Get a List of All URLs
top of page

Use Javascript to Get a List of All URLs

Matt Jennings has posted Javascript here, which you can use to generate a list of all of the URLs on a web page. Here's how you can execute this code in Chrome:


var urls = document.getElementsByTagName('a');


for (url in urls) {

console.log ( urls[url].href );

}



  1. With the web page in question, press F12 to open the Console for Chrome. Click on the 'forbidden circle' in the tool bar to clear the console:

2. Enter the script in the console, and press ENTER.

3. A list of the URLs on the web page will be created.




bottom of page