Created
January 23, 2016 09:42
-
-
Save nicolashohm/47ec5421bf11f0f4cb43 to your computer and use it in GitHub Desktop.
Bookmarklet to vote up question and answer on stackoverflow.com
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
javascript:(function(){ | |
var a=document.getElementsByClassName('answer')[0]; | |
a.getElementsByClassName('vote-up-off')[0].click(); | |
var b=document.getElementsByClassName('question')[0]; | |
b.getElementsByClassName('vote-up-off')[0].click(); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment