Skip to content

Instantly share code, notes, and snippets.

@dos65
Created March 12, 2015 20:13
Show Gist options
  • Save dos65/98e31c16b0458892d1db to your computer and use it in GitHub Desktop.
Save dos65/98e31c16b0458892d1db to your computer and use it in GitHub Desktop.
vk playlist
var div1 = document.getElementById('pad_playlist')
var audioDivs = div1.getElementsByClassName('audio')
for(var i in audioDivs){
var tmpDiv = audioDivs[i];
if(!tmpDiv.getElementsByTagName)
continue;
var inputs = tmpDiv.getElementsByTagName('input');
if(!inputs)
continue;
var url = inputs[0].value;
console.log(url)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment