I\'m using a jscript to retrieve JSON data from Flickr. Works 100% in every browsers except IE.
I\'m using the jquery each function that calls this specific function for IE:
Using the file https://github.com/douglascrockford/JSON-js/blob/master/json2.js you'll have this error: "parsing string: Line: 191 Error: Object doesn't support this property or method". the property or method is valueOf().
I use the solution suggested in JSON2 Error / Conflict with another script
return ((typeof this.valueOf === 'function') ? this.valueOf(): this.toString());
instead of
return this.valueOf();