Skip to content Skip to sidebar Skip to footer

Ie8 Json Problem

I'm facing very strange issue, I'm getting JSON object from django powered site and excuting it using eval(). It works on all the other browsers except all versions of IE. in IE, I

Solution 1:

Your result array has an extra comma at the end. remove it and it should be fine.

},],

to

}],

Post a Comment for "Ie8 Json Problem"