thejeswarareddy
thejeswarareddy

Reputation: 21

IE 11 not supporting localStorage alternate for this

IE 11 not supporting localStorage variables can someone suggest alternate for localStorage & cookies. For some features cookies are also not works for me. So i need alternate for cookies & localStorage.setItem/getItem.

To store the values from one page to another page, or between wizards i need this.

Upvotes: 2

Views: 404

Answers (3)

Vin Shahrdar
Vin Shahrdar

Reputation: 1231

You can use SessionStorage. It works in IE 11.

Upvotes: 0

Alvaro Valle
Alvaro Valle

Reputation: 92

depends on what are you using on background/server side. you can store this informations there. try to use Sessions for example.

what is yout backend tecnology?

Upvotes: 0

Another alternative for localStorage is IndexedDB or WebSQL (limited support).

Upvotes: 2

Related Questions