Skip to content

Instantly share code, notes, and snippets.

@ichtrojan
Created May 10, 2019 14:31
Show Gist options
  • Save ichtrojan/6b00068613df58c445876d2998f95609 to your computer and use it in GitHub Desktop.
Save ichtrojan/6b00068613df58c445876d2998f95609 to your computer and use it in GitHub Desktop.
Reload a Page after first load
(() => {
if( window.localStorage )
{
if(!localStorage.getItem('firstLoad'))
{
localStorage['firstLoad'] = true;
window.location.reload();
} else {
localStorage.removeItem('firstLoad');
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment