Possible for pages to have "Load More" like FB/Twitter ?

Here's an example of me using it in the Resource Manager:
Note that you need to either wait for 1.0.2 to be released, or to apply the fix to xenforo.js that I posted above in order for this to work.
i've found this in the documentation:
* After template content has been inserted, the control element will fire a 'ContentInserted' event
* after which the control will be deactivated.
Shouldn't this be ContentLoaded???
Code:
                    var insertEvent = new $.Event('ContentLoaded');
                        insertEvent.ajaxData = ajaxData;
                        insertEvent.textStatus = textStatus;

                    $link.trigger(insertEvent);
 
Top Bottom