yazdmich

Untitled

Aug 17th, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var matches;
  2. var index;
  3. var urls = [];
  4. matches = document.querySelector('#section_matches > ul').getElementsByClassName('match');
  5. for (index = 0; index < matches.length; ++index) {
  6.     window.alert(matches[index].getElementsByClassName('profile_image')[0].href);
  7.     urls[index]=matches[index].getElementsByClassName('profile_image')[0].href;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment