Skip to content

Instantly share code, notes, and snippets.

@mikaelz
Created September 28, 2017 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikaelz/afda7b378d163becef262f1bea9ee5dd to your computer and use it in GitHub Desktop.
Save mikaelz/afda7b378d163becef262f1bea9ee5dd to your computer and use it in GitHub Desktop.
Get YouTube result titles text
var parsed = [], titles = $$('h3 a');
for (i in titles) {
parsed.push((titles[i].text).trim());
}
console.log(parsed);
//copy(parsed); // Copy to clipboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment