What should be done if a browser does not support JSON.parse? Would it be appropriate to include json.js and use parseJSON instead?
Here's an example of how the code could look:
var output;
if (JSON.parse)
output = JSON.parse(data);
else
output = JSON.parseJSON(data);