Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function sidelist(){
  2.  
  3. userlist = gng();
  4.  
  5. $('#instructions').html('');
  6.  
  7. jQuery.each(userlist, function(i, val) {
  8.  
  9. var arr = i.split(' :: ');
  10.  
  11. $('#instructions').append('<p><a href="#" onclick="f('+arr[0]+');">'+arr[1]+'</a></p>');
  12.  
  13. });
  14.  
  15. $('#instructions').append('<p>-----</p><p><a href="#" onclick="g(25000,25000);">[Go to 25k]</a> &nbsp; <a href="#" onclick="sidelist();">[Refresh]</a></p>');
  16.  
  17. setTimeout(sidelist,1000);
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement