Trying to parse the following valid json data returned from a web service;
{"SwipeArray":[
{"UserID": "@xxxxxxxx",
"Date": "8/24/2011 10:41:38 AM",
"Lab": "5"
}
]}
Using this code;
$.ajax({
type: "POST",
... etc
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (json1) {
var y = json1.SwipeArray[0].Lab;
Get this error at lst line above;
Microsoft JScript runtime error: 'SwipeArray.0' is null or not an object
json1.SwipeArray, it complained aboutSwipeArray.0. Make sure there is no unintended white space or anything like that. – eddie_c Aug 25 '11 at 16:48