infinite scroll manual trigger

后端 未结 3 1686
暗喜
暗喜 2020-12-25 15:51

Just doesn\'t seem to work... :-( Have seen more complaints about it but I can\'t find the answer.

The Problem: Infinite scroll works but not the ma

3条回答
  •  执念已碎
    2020-12-25 15:52

    I made the following tweak to ensure the navigation link showed up after being clicked the first time:

    jQuery("#clickable_element").click(function(){
        jQuery('#main_content_container').infinitescroll('retrieve');
        jQuery('#pagination').show();
        return false;
    });
    

提交回复
热议问题