Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created April 3, 2015 10:47
Show Gist options
  • Save z-------------/e2d684055b86d00de081 to your computer and use it in GitHub Desktop.
Save z-------------/e2d684055b86d00de081 to your computer and use it in GitHub Desktop.
var button = document.querySelector("#thebutton");
var buttonContainer = button.parentElement;
function pressTheButton(){
buttonContainer.classList.remove("pressed");
button.click();
}
// it is then possible to use setInterval to do something crazy ;)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment