I've been at this for a while and can't seem to nail it down, your help is much appreciated.
Challenge: Unable to identify how to properly use JQUERY to parse the following JSON (String?) response from the server:
{"d":"{\"NewDataSet\":{\"Table\":{\"EMPLOYEE_NO\":\"3605\",\"NAME\":\"Last, First\",\"STAFF\":\"CSR\",\"USERNAME\":\"lis\",\"PIN\":\"somepassword\"}}}"}
Tried: Many things, such as...
var dtObj = jQuery.parseJSON(data);
$.each(dtObj, function (i, val) {
.. do some stuff
});
Requirement: Need to get the EMPLOYEE_NO, NAME, STAFF, USERNAME, AND PING values.
Thanks!