Justin Elkow
Justin Elkow

Reputation: 2943

Web Storage (sessionStorage and localStorage) in private browsing mode (incognito)

BACKGROUND

The HTML5 Web Storage feature in modern browsers is accessed through Javascript commands such as:

sessionStorage.setItem("username", "John");
localStorage.setItem("username", "John")

The site Can I use indicates that browser support is near 90%. However, in the "Known Issues" tab, Can I use says:

In private browsing mode, Safari, iOS Safari and the Android browsers do not support setting localStorage.

MY QUESTION

In private browsing mode, do Safari, iOS Safari and the Android browsers still support sessionStorage?

Upvotes: 14

Views: 29925

Answers (2)

Srikrushna
Srikrushna

Reputation: 4965

Chrome will support localStorage and sessionStorage in private window.

Upvotes: 1

jumpdart
jumpdart

Reputation: 1722

Android and chrome I believe allow you to access old keys in session storage, but not write to it. I know that Safari will not allow any use of session or local storage.

similar so question

Upvotes: 9

Related Questions