Last active
May 31, 2016 15:24
-
-
Save thehig/b4a7a4b3e47324ebf4a99301565a1a65 to your computer and use it in GitHub Desktop.
js: twotap set all docs to JavaScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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