Load more in bootsrapselectpicker

31 Views Asked by At

I want to loadmore option on mouse scroll using bootsrap selectpicker, how can i do that?

 $('#rel_id_contact1').bind('scroll', function(){   
        alert("first");
    if($(this).scrollTop() + $(this).innerHeight() +1 >= $(this)[0].scrollHeight){
        alert("asdasd"); return false;
    }
});
0

There are 0 best solutions below