Created
February 21, 2017 23:25
-
-
Save acoyfellow/d9d086f753b3167da71efc2d25b829ee to your computer and use it in GitHub Desktop.
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 urls= [ | |
'https://www.linkedin.com/in/coeyman/', | |
'https://www.linkedin.com/in/coeyman/', | |
'https://www.linkedin.com/in/coeyman/', | |
'https://www.linkedin.com/in/coeyman/', | |
'https://www.linkedin.com/in/coeyman/', | |
'https://www.linkedin.com/in/coeyman/', | |
'https://www.linkedin.com/in/coeyman/', | |
]; | |
var myWindow=null; | |
var crawl= e=>{ | |
if(myWindow!==null){ myWindow.close() }; | |
myWindow= window.open(urls[0]); | |
myWindow.addEventListener('load', next, false); | |
urls.splice(0,1); | |
}; | |
crawl(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment