I want to read json response as name and value pairs in my JQuery code. Here is my sample JSON response that I return from my java code:
String jsonResponse
success: function(responseData) { for (var key in responseData) { alert(responseData[key]); } }
It is important to note that the order in which the properties will be iterated is arbitrary and shouldn't be relied upon.