When I alert the results I get following JSON data:
var results = JSON.stringify(result.results);
alert(results);
[{
"test": "Connect_Disconnect222222",
"jobid": "59",
"os": "Windows NTeeeeeee",
"report": "Verify Wireless Interface presenttttttttt and state is Disconnected:OK<br>Verify Profile not present on the Client:OK Client:OK<br>Verify Profile Not Present on the Client:OKffffffffffff<br>"
}]
How can I get the values report, test and jobid from that data?
JSON.stringify()converts a javascriptobjectintostring, so you won't be able to access those fields anymore.