Created
November 28, 2019 19:41
-
-
Save Farmatique/5a4e6eaa134e15c31a9feb347fc082ab to your computer and use it in GitHub Desktop.
Refresh page onload only once
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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