Skip to content

Instantly share code, notes, and snippets.

@thehig
Last active May 31, 2016 15:24
Show Gist options
  • Save thehig/b4a7a4b3e47324ebf4a99301565a1a65 to your computer and use it in GitHub Desktop.
Save thehig/b4a7a4b3e47324ebf4a99301565a1a65 to your computer and use it in GitHub Desktop.
js: twotap set all docs to JavaScript
/* Press Ctrl-A then Ctrl-J to one-line the code below */
var item = document.querySelectorAll('div.code-tabs > div.ng-scope.tab > a > span');
for (var i = 0; i < item.length; i++) {
var current = item[i];
if(!current || !current.innerText) continue;
if(current.innerText === "JavaScript"){
current.click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment