I am getting a JSON response from a method called /CategoryResearch/Search
but I have to know how can I use that JSON data to inject this data to my HTML table. I am new with AJAX so that's why I can't access the returned data value from the AJAX call. Please check my example code bellow.
$.post("/CategoryResearch/Search", {
OperationName: _operationname,
calltype: _calltype,
keywords: _keywords
})
.done(function (data) {
if (data != null) {
$("#normalState").fadeOut();
// this "data" contains returned Json. How can i access this?
var u = data.property.value // something like this way?
}});