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:
You can choose a different method when using different browsers:
choose eval in IE6, 7
choose native JSON in IE8
choose new Function in Firefox2, 3
choose eval in Safari4
eval has the same performance as new Function on the whole when you use the other browsers.