Skip to content

Instantly share code, notes, and snippets.

@RealOrangeOne
Last active January 4, 2018 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save RealOrangeOne/7da9a3dd1bf90ecdf7be to your computer and use it in GitHub Desktop.
Save RealOrangeOne/7da9a3dd1bf90ecdf7be to your computer and use it in GitHub Desktop.
Easy script to win a round of 'The Wiki Game' in a single move
$("#start").click();
var goal = $("#endpagelink0 > a").attr('href').replace("http://en.wikipedia.org/", "");
var goalArray = $("#wiki").attr("src").split("?");
goalArray[1] = "?" + goalArray[1];
goalArray[0] = goal;
$("#wiki").attr("src", goalArray.join().replace(",", ""));
$("#start").click();var goal=$("#endpagelink0 > a").attr("href").replace("http://en.wikipedia.org/",""),goalArray=$("#wiki").attr("src").split("?");goalArray[1]="?"+goalArray[1],goalArray[0]=goal,$("#wiki").attr("src",goalArray.join().replace(",",""));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment