Skip to content

Instantly share code, notes, and snippets.

@nicolashohm
Created January 23, 2016 09:42
Show Gist options
  • Save nicolashohm/47ec5421bf11f0f4cb43 to your computer and use it in GitHub Desktop.
Save nicolashohm/47ec5421bf11f0f4cb43 to your computer and use it in GitHub Desktop.
Bookmarklet to vote up question and answer on stackoverflow.com
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