Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. Request('friends.get', {fields: 'photo_100', count: 5, v: 5.95}, function(data) {
  2. console.log(data);
  3. draw(data.response.items);
  4. })
  5.  
  6. function draw(friends) {
  7. $('#some').html(friends[1].id);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement