How to increase this number based on record .Now it's static this number .Please help me
$('.pagination li a').click(function (event) {
event.preventDefault();
var id = $(this).text();
$.ajax({
url: "/Utility/PageId?Id=" + id,
type: "POST",
dataType: "html",
traditional: true,
contentType: "application/json; charset=utf-8",
success: function (data) {
$(".blog-layout-content").html("");
$(".blog-layout-content").html(data);
},
});
});
Arnab MukherjeePosted Jun 5, 2021, 9:42 AM
Guest UserPosted Jun 4, 2021, 10:49 AM
Sachin SinghPosted Jun 4, 2021, 9:22 AM