Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created November 28, 2019 19:41
Show Gist options
  • Save Farmatique/5a4e6eaa134e15c31a9feb347fc082ab to your computer and use it in GitHub Desktop.
Save Farmatique/5a4e6eaa134e15c31a9feb347fc082ab to your computer and use it in GitHub Desktop.
Refresh page onload only once
(function()
{
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