Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sysnucleussupport/6afcc88d36952c15f655c95e7ccff85e to your computer and use it in GitHub Desktop.
Save sysnucleussupport/6afcc88d36952c15f655c95e7ccff85e to your computer and use it in GitHub Desktop.
var buttons = document.getElementsByTagName('a');
for (var i = buttons.length - 1; i >= 0; i--) {
var button = buttons[i];
if(button.innerText=='Handicap') {
button.click();
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment