I'm making an AJAX call to a WCF service and when I pass in my data i use JSON.stringify()
The call returns and works fine in FF, & Chrome, but not IE8. I get an error: 'JSON' is undefined
suggestions?
p.s. I also want this to work in IE7
|
I'm making an AJAX call to a WCF service and when I pass in my data i use JSON.stringify() The call returns and works fine in FF, & Chrome, but not IE8. I get an error: 'JSON' is undefined suggestions? p.s. I also want this to work in IE7 |
||||
|
Use json2 for a consistent cross browser implementation. |
|||||||||||
|
|
I had the issue with IE9. IE9 was rendering my page in "quirks" mode, the solution was simply to add |
|||
|
|
UpdateCheck the JSON3 library. It works like a charm. I hope this helps. Hope this helps. I got this from a few online sources long back. don't have their links.
|
|||||||||||
|
|
To make your function works better in IE import JSON2 parser code in your file, as IE by default does not support It can be found here |
||||
|
|
|
In IE open the compatibility view settings and remove the localhost from the listbox for "Websites you have added to Compatibility View". It worked for me. |
|||
|
stringify()method natively (there are libraries that implement it, but you haven't specified whether you're using any of them) – Spudley Feb 23 '11 at 16:24