37 lines
776 B
JavaScript
37 lines
776 B
JavaScript
|
|
$(function(){
|
|
$.ajax({
|
|
url:"dbmanupulate.php",
|
|
type:"POST",
|
|
data:"actionfunction=showData&page=1",
|
|
cache: false,
|
|
success: function(response){
|
|
|
|
$('#pagination').html(response);
|
|
|
|
}
|
|
|
|
});
|
|
$('#pagination').on('click','.page-numbers',function(){
|
|
$page = $(this).attr('href');
|
|
$pageind = $page.indexOf('page=');
|
|
$page = $page.substring(($pageind+5));
|
|
|
|
$.ajax({
|
|
url:"dbmanupulate.php",
|
|
type:"POST",
|
|
data:"actionfunction=showData&page="+$page,
|
|
cache: false,
|
|
success: function(response){
|
|
|
|
$('#pagination').html(response);
|
|
|
|
}
|
|
|
|
});
|
|
return false;
|
|
});
|
|
|
|
});
|
|
|