Skip to content

Instantly share code, notes, and snippets.

@clvrobj
Forked from disinfeqt/gist:2286703
Created April 3, 2012 09:26
Show Gist options
  • Save clvrobj/2290640 to your computer and use it in GitHub Desktop.
Save clvrobj/2290640 to your computer and use it in GitHub Desktop.
YYETS Copy
(function(){
var output = '';
for(var i = 0,array = document.querySelectorAll('.hover.filebox')[0].querySelectorAll('li'); i<array.length-1; i++){
if(array[i].querySelector('input').checked && array[i].querySelector('a').href.length > 0 && array[i].querySelector('a').href.match('-----') === null){
output += array[i].querySelector('a').href + '\n';
}
}
copy(output);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment