Skip to content

Instantly share code, notes, and snippets.

@RANUX
Created July 22, 2016 22:56
Show Gist options
  • Save RANUX/e2b1b5e51c2fbc498f31a43f074556d2 to your computer and use it in GitHub Desktop.
Save RANUX/e2b1b5e51c2fbc498f31a43f074556d2 to your computer and use it in GitHub Desktop.
Get top tags from websta.me
// open browser debug console, paste code and run
var links = $('.tagname>a');
var a = [];
for ( var i=0; i < links.length; i++ )
{
a.push( $(links[i]).text() );
}
console.log(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment