Reputation: 21
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
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
Reputation: 386
Another alternative for localStorage is IndexedDB or WebSQL (limited support).
Upvotes: 2