So, my problem was the following. It's follow the previous HERE & HERE
I got dynamycaly added table from XML with this code:
$.ajax({
type: "GET",
url: "../datas/_pizzas",
dataType: "xml",
success: function(xml) {
$(xml).find('row').each(function() {
var getNom = $(this).find('nomp').text();
var Prix1 = $(this).find('petit').text();
var Prix2 = $(this).find('moyen').text();
var Prix3 = $(this).find('grand').text();
$('<table id="item"></table>').html('<tr><td id="test" onclick="afficher(\''+getNom +'\','+Prix1+','+Prix2+','+Prix3+');"><b>' + getNom + '</b></td></tr>').appendTo('#pizzas');
});
}
});
and i need to limit the number of them on the page. And if possible have a index navigation. I search for a pagination plugin that would do the trick but I have not found any that suited me, too much useless config, or unreadable for me.
Someone have code or explain for me ????