User-1722422105 posted
Hi all
I am geting the data from
function loadData() {
$.ajax({
url: "/Home/List",
type: "GET",
contentType: "application/json;charset=utf-8",
dataType: "json",
success: function (result) {
var html = '';
var hhi=' " ';
$.each(result, function (key, item) {
var hh = item.imag_path1+hhi;
html += '<tr>';
html += '<td>' + item.empid + '</td>';
html += '<td>' + item.Name + '</td>';
html += '<td>' + item.Age + '</td>';
// im
I want to add the column name(heading) when I display
how to do this