Joseph James Shenton
Joseph James Shenton

Reputation: 99

Can two folders share the same localStorage?

I am making an app that changes settings on my other app; they are both hosted on the same site just in different folders. Is there a way to make it so they both share the same localStorage?

Upvotes: 2

Views: 542

Answers (1)

jcubic
jcubic

Reputation: 66490

localStorage is domain based. All pages with same domain share single localStorage.

Also to share localStorage, both pages need to have the same port and protocol like https.

Upvotes: 3

Related Questions