Skip to content

Instantly share code, notes, and snippets.

@jafow
Created January 27, 2016 02:24
Show Gist options
  • Save jafow/01700919a74b6351bf2c to your computer and use it in GitHub Desktop.
Save jafow/01700919a74b6351bf2c to your computer and use it in GitHub Desktop.
reset button
var reset = document.getElementById('reset');
reset.addEventListener('click', function(e) {
location.reload();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment