Hi,
i am appending html table into div tag using ajax,in that how do pagination
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "MasterService.asmx/LoadClaim",
dataType: "json",
success: function (data) {
var div = $("#test").empty();
$(data.d).each(function (index, item) {
div.append(data.d
);--am appending html table inside div tag ,give me solution do pagination in that
});
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
debugger;
}
});
});
Thanks