Skip to content

Instantly share code, notes, and snippets.

@brenopolanski
Created May 12, 2015 00:58
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brenopolanski/a7fd4f7a7d9cbb61ed76 to your computer and use it in GitHub Desktop.
Save brenopolanski/a7fd4f7a7d9cbb61ed76 to your computer and use it in GitHub Desktop.
Reload an HTML page just once using JavaScript
if (window.location.href.substr(-2) !== '?r') {
    window.location = window.location.href + '?r';
}

or:

window.onload = function() {
    if (!window.location.hash) {
        window.location = window.location + '#loaded';
        window.location.reload();
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment