xrahitel

server

Jul 26th, 2019 (edited)
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. var links = ['google.com', 'ya.ru', 'vk.com', 'facebook.com'], i = 0, win = 0, left = 20;
  2.  
  3. function openWindows(linksArr) {
  4.  
  5. setTimeout(function() {
  6.  
  7. win = open( 'http://' + linksArr[i++], 'test', 'width=300,height=200,left=' + left + '' );
  8.  
  9. win.opener = null;
  10.  
  11. left += 320;
  12.  
  13. if ( i !== linksArr.length )
  14. openWindows(linksArr);
  15.  
  16. }, 5000);
  17. }
  18.  
  19. openWindows(links);
  20.  
Advertisement
Add Comment
Please, Sign In to add comment