el asunto va mas o menos por
Código HTML:
path: function(index)
Código Javascript:
Ver original
<script> $('#content').infinitescroll({ navSelector : "#next:last", nextSelector : "a#next:last", itemSelector : "#content li", debug : true, dataType : 'php', maxPage : 100, loadingText : "Cargando eventos...", extraScrollPx: 450, animate : false, donetext : "Fin del scroll, recuerda que puedes utilizar la busqueda de eventos." , path: function(index) { return "index_final.php?pageNum_mostrar=" + index + "&"; } }, function(newElements, data, url){ window.console && console.log('returned: ', newElements); $("ul[data-liffect] li").each(function (i) { $(this).attr("style", "-webkit-animation-delay:" + i * 400 + "ms;" + "-moz-animation-delay:" + i * 400 + "ms;" + "-o-animation-delay:" + i * 400 + "ms;" + "animation-delay:" + i * 400 + "ms;"); if (i == $("ul[data-liffect] li").size() -1) { $("ul[data-liffect]").addClass("play") } }); $('.boxgrid.slideright').hover(function(){ $(".cover", this).stop().animate({top:'105px'},{queue:false,duration:300}); }, function() { $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300}); }); }); </script>