I get the following JSON String from server as response enter image description here Here is my Jquery Code
function loadCategories() {
$.ajax({
type: "POST",
url: "/Services/ControllerService.asmx/Get",
data: {},
cache: false,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (result) {
var jsonArray = JSON.parse(result.d);
alert(jsonArray);
}, error: function (msg) {
alert('Error : while executing the outlets : ' + msg.responseText);
}
});
}
The alert shows the JSON String Correctly. Now i want to map this response to an html table showing columns "a" and "b"
a - b
hasOtherInfo Undergratuate_in_Computing_Faculty
How can i do that ??