I am Using web service in with Jquery Ajax this returning me the following string
{"d":"[{\"username\":\"ABC\",\"designation\":\"\"}]"}
but when I am trying to parse this it is giving me error
var response = '{"d":"[{\"username\":\"ABC\",\"designation\":\"\"}]"}';
console.log(JSON.parse(response));
[]should not have quotes around them, and quotes should not be escaped. How was this json generated?