Skip to content Skip to sidebar Skip to footer

Jscript Debugger Error, In Simple Script

I'm working on a local html file, stored on a Win7 machine and opened in IE 9. This html file uses javascript and jStorage. However, when I run, I get the error 'SCRIPT5007: Unable

Solution 1:

localStorage does not work for local files in IE. It does in Chrome but not in IE.

Also IE 9 does support JSON if you have <!DOCTYPE html> and <meta http-equiv="X-UA-Compatible" content="IE=edge;chrome=1" /> in your document.

Try to run a small local web server.

Post a Comment for "Jscript Debugger Error, In Simple Script"