Scope Of Sessionstorage And Localstorage
I read some documentation on sessionStorage and localStorage, but I don't understand what the scope is: the domain, a specific page? For example, if I have the following pages: htt
Solution 1:
Session Storage:
Values persist only as long as the window or tab in which they stored.
Values are only visible within the window or tab that created them.
Local Storage:
Values persist window and browser lifetimes.
Values are shared across every window or tab running at the same origin.
So, by reading and understanding this each key-value pair is unique for each domain, because local storage persist values across window or tab.
Solution 2:
The values are going to overwrite each other. Each key-name pair is unique for a protocol and domain, regardless of the paths.
The affected domain can be changed via the document.domain
property.
sub.example.com
->example.com
is possible (subdomain)sub.example.com
->other.example.com
is not possible
Post a Comment for "Scope Of Sessionstorage And Localstorage"