Created
July 29, 2017 09:19
-
-
Save haydenbleasel/5a9c74b4126bc90cb3e64304b93430ed to your computer and use it in GitHub Desktop.
Make sure all the links on your page work.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var links = document.querySelectorAll('a'); | |
for (var i = 0; i < links.length; i++) { | |
links[i].click(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment