Good afternoon, please tell me how to solve the problem of getting an error in IE11 and get the JS code to work in the same place. The following error occurs:
DOM7011: Disabled back and forward caching. For more information, see: http://go.microsoft.com/fwlink/?LinkID=291337
On my website, JS is conducting its work with LocalStorage - maybe because of this, it swears and disappears.
And debugger IE11 swears on the localStorage.setItem(name, value);
method localStorage.setItem(name, value);
And it gives an error:
Unable to get property 'setItem' of undefined or null reference
In Mozile, Chrome, Opera, everything works without complaints and in the console without errors.
value
, butlocalStorage
. - VenZell