I'm using AJAX for infinite scrolling with zen cart.
Here is a code snippet:
etc.Code:<script type="text/javascript"> $(window).scroll(function(){ if($(window).scrollTop() == $(document).height() - $(window).height()){ $('div#loadmoreajaxloader').show(); $.ajax({ cache: false, url: 'loadmore.php', success: function(html){
I was wondering where I should store the file 'loadmore.php' that basically echo's out my additional pages of data.
thanks!


Reply With Quote

