Guest User

Untitled

a guest
Oct 17th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function post_to_url(params) {
  2. console.log(params);
  3. }
  4.  
  5. function do_cross_requests(aspect) {
  6. params = {};
  7.  
  8. var delay = 0;
  9. for (var page in active_pages) {
  10.  
  11. params['active_page'] = active_pages[page];
  12. console.log(params['active_page']);
  13. setTimeout('post_to_url("params");', delay);
  14. delay+=1000;
  15.  
  16. }
  17. }
Add Comment
Please, Sign In to add comment