Skip to content

Instantly share code, notes, and snippets.

@nobitagit
Created August 12, 2016 15:14
Show Gist options
  • Save nobitagit/ab02bcc58b7d39c16ab3a56791694830 to your computer and use it in GitHub Desktop.
Save nobitagit/ab02bcc58b7d39c16ab3a56791694830 to your computer and use it in GitHub Desktop.
var items = document.querySelectorAll('.fsl.fwb.fcb');
var names = Array.prototype.slice.call(items).map(function(item){
return item.textContent;
}).sort(function(a,b){
if (a < b) {
return -1;
} else {
return 1;
}
})
var toString = names.join('\n');
copy(toString)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment