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
It's easy like this:
json = {"key1": "value1", "key2": "value2" }; $.each(json, function(key, value) { alert(key + "=" + value); });