I have some JSON-code which has multiple objects in it:
[ { \"MNGR_NAME\": \"Mark\", \"MGR_ID\": \"M44\", \"EMP_ID\": \"1849\"
You need to access the result object on iteration.
result
for (var key in result) { if (result.hasOwnProperty(key)) { // here you have access to var MNGR_NAME = result[key].MNGR_NAME; var MGR_ID = result[key].MGR_ID; } }