AJAX and JSON

How can I safely parse a JSON response from an AJAX request ?

As an alternative, do jQuery or prototype.js interfere with this framework?

10x,
Alessandro

How can I safely parse a JSON response from an AJAX request ?

You may try the following:

JSON.parse(loader.xmlDoc.responseText) or eval(loader.xmlDoc.responseText)