My server returns a valid JSON string ( JSONP ).
eg parseJSON ( {"NAME":"Tom"} );
on client side i have this function implemented
function parseJSON ( myOBJ ) {
//myOBJ is already a JSON object but I wanted to it to be a JSON string
// so that I can check
// if browser supports JSON.parse otherwise do eval on that string.
}