JSON.stringify() supported by IE 8?
- by user246114
I need to use:
JSON.stringify()
which should be supported by chrome, safari, and FF (I think). I think IE8 also has support for the JSON object. I think IE7 and 6 do not, so I'm doing this:
<!--[if lt IE 8]>
<script src="http://www.json.org/json2.js"></script>
<![endif]-->
so, I think this will import the external…