Skip to content Skip to sidebar Skip to footer

Remote Debug A Site? Json Issue With Ie8

The scenario is that the website works wonderfully on all machines except the ones where the client works. It's in Africa and I've no hope of getting access to it. He has limited I

Solution 1:

As mentioned in the comments you need to add a polyfill for the JSON object which is not supported on older browsers. See here for more info on browser compatibility of the JSON object. They mention that it should be compatible for IE8, but this is not always the case and if the user is running IE8 in compatibility-mode it won't work either.

You should include the polyfill script file before you load your other scripts, I recommend doing it in conditional comments:

<head><!--[if lte IE 8]>
    <script src="/path/to/json3.js"></script>
  <![endif]--></head>

This would only load the polyfill for IE8 and below.

Post a Comment for "Remote Debug A Site? Json Issue With Ie8"