I want to use parameters that I receive in an Ajax response, but I'm receiving it as a simple string.
Ajax:
$.ajax({
type: 'POST',
url: url,
data: str
}).done(function(res){
// res is a simple string
// => ResponseCode=0&Description=OK
});
Lets say I need to use the Description parameter's value (OK).