I have some values in my site which I want to clear when the browser is closed. I chose sessionStorage
to store those values. When tab is closed they are indeed cleared, and kept if the user presses f5; But if the user opens some link in a different tab these values are unavailable.
How I can share sessionStorage
values between all browser tabs with my application?
The use case: put a value in some storage, keep that value accessible in all browser tabs and clear it if all tabs are closed.
if (!sessionStorage.getItem(key)) {
sessionStorage.setItem(key, defaultValue)
}
You can use localStorage and its "storage" eventListener to transfer sessionStorage data from one tab to another.
This code would need to exist on ALL tabs. It should execute before your other scripts.
I tested this in chrome, ff, safari, ie 11, ie 10, ie9
This method "should work in IE8" but i could not test it as my IE was crashing every time i opened a tab.... any tab... on any website. (good ol IE) PS: you'll obviously need to include a JSON shim if you want IE8 support as well. :)
Credit goes to this full article: http://blog.guya.net/2015/06/12/sharing-sessionstorage-between-tabs-for-secure-multi-tab-authentication/