I am returning a List<> from a webservice as a List of JSON objects. I am trying to use a for loop to iterate through the list and grab the values out of the properties.
Here it is:
success: function(data) { $.each(data, function(i, item){ alert("Mine is " + i + "|" + item.title + "|" + item.key); }); }
Sample JSON text:
{"title": "camp crowhouse", "key": "agtnZW90YWdkZXYyMXIKCxIEUG9zdBgUDA"}