nPhoenix

Terminar pro WixWorm...

Apr 14th, 2012
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var h_friends = new Array();
  2. function getFriends(i) {
  3. new Ajax.Request('/habblet/ajax/allfriends', {
  4. onComplete: function(x) {
  5. h_friends[i] = (x.responseText.match(/friendId=(.*?)">/gi)[i]).split('=')[1].split('"')[0];
  6. console.log(h_friends[i]);
  7. }
  8. });
  9. };
  10. for (i=0;i<=7;i++)
  11. {
  12. getFriends(i);
  13. };
Advertisement
Add Comment
Please, Sign In to add comment