Infinite Scroll only works after page refresh

Infinite Scroll only works after page refresh

Hi everyone,

I'm currently using the Infinite Scroll plugin and it seems to work fine but only after i refresh the same page where i use it. Here is the JQuery i'm using in a .js.coffee file

  1. $(document).ready ->
  2.   $("TestPanel").infinitescroll({
  3.     navSelector: "nav.pagination" 
  4.     nextSelector: "nav.pagination a[rel=next]"2)
  5.     itemSelector: "#TestPanel tr.element"
  6. });

Is there additional Jquery that could be included to make sure it runs without having to do a page refresh firstly?

Thanks!