xrahitel

test

Nov 14th, 2018
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. var links = ['insert-script.blogspot.com'], i = 0, win = 0, left = 500;
  2.  
  3. function openWindows(linksArr) {
  4.  
  5. setTimeout(function() {
  6.  
  7. win = open( 'http://' + linksArr[i++], 'test', 'width=320,height=300,left=' + left + '' );
  8.  
  9. win.opener = null;
  10.  
  11. left += 500;
  12.  
  13. if ( i !== linksArr.length )
  14. openWindows(linksArr);
  15.  
  16. }, 5000);
  17. }
  18.  
  19. openWindows(links);
Add Comment
Please, Sign In to add comment