Can someone help me with a simple AJAX pagination in Codeigniter using JQuery? With the paginated list queryed from the database. I searched the web but all the exemples are ver
Apply Live click, if you are returning data from controller as follows:
jQuery("#pagination a").live('click',function(e){ e.preventDefault(); jQuery.ajax({ type: "POST", url: jQuery(this).attr("href"), success: function(res){ jQuery('#multiple_selection_data').html(res); } }); return false; });