Facebook Style Infinite Scroll Pagination in Codeigniter using Ajax

Поділитися
Вставка
  • Опубліковано 25 гру 2024

КОМЕНТАРІ • 14

  • @TheCodebookInc
    @TheCodebookInc 6 років тому

    How to do the same thing with Laravel?

  • @jacv7870
    @jacv7870 6 років тому

    Sir can you do a codeigniter form_validation + ajax submit.

  • @mimrankhan9974
    @mimrankhan9974 6 років тому

    sir you did not tell us how to upload videos and how to display on webpage in php please make a tutorial on it .

  • @saiffarooq
    @saiffarooq 6 років тому

    Hello sir,
    can u please make a WordPress Tutorial for beginners?
    1. static HTML to dynamic WordPress.
    2. static HTML template to E-Commerce Website.
    3. static WordPress theme to dynamic WordPress.
    Thanks in Advance

  • @taherpashawebdeveloper3346
    @taherpashawebdeveloper3346 2 роки тому

    not working in mobile...

  • @asaduzzaman5356
    @asaduzzaman5356 6 років тому

    please show us how to make a email checker website using smtp please please

  • @swathia.b.7463
    @swathia.b.7463 5 років тому

    Sir I contacted you two times through mail id, you are not giving any response. I think it's a waste of time to subscribe and trying to contact

  • @andreigatej6704
    @andreigatej6704 6 років тому

    Thank you!

  • @carlmiguelbartolomemigs9276
    @carlmiguelbartolomemigs9276 6 років тому

    Please create a tutorial like this using laravel framework tia

  • @jabirkhan8897
    @jabirkhan8897 5 років тому

    thank you

  •  6 років тому

    add to cart paypal integration strip integration in codeigniter using ajax and jquery

  • @Sebeklis
    @Sebeklis 6 років тому

    jQuery in 2k19 haha

  • @vivekkapoor2537
    @vivekkapoor2537 6 років тому

    scroll not smooth

  • @taherpashawebdeveloper3346
    @taherpashawebdeveloper3346 2 роки тому

    i have updated JS code now it's working fine
    $('body').on('touchmove', onScroll);
    $(window).on('scroll', onScroll);
    function onScroll(){
    if($(window).scrollTop() + $(window).height() > $("#load_data").height() && action == 'inactive')
    {
    lazzy_loader(limit);
    action = 'active';
    start = start + limit;
    setTimeout(function(){
    load_data(limit, start);
    }, 1000);
    }
    };