My Json response looks like:
[{"UserID": 1}, {"UserID", 324}]
I call the page to get json like:
$.get("myurl.aspx", {blah:1}, function(data) {
$.each(data.items, function(i, item) {
alert(item.UserID);
});
});
Firebug is reporting the error:
G is undefined.