Question

I am using fancyBox to display my content in Ajax mode. I want to add mCustomScrollbar to the scrollbar of a div in the displayed content but it is not showing. On the page of the content the mCustomScrollbar is working fine, but not in the fancyBox Ajax window.

I presume I have to call the second script with beforeLoad or beforeShow callbacks but neither is working.

    beforeShow: function(){
        $(".textItem").mCustomScrollbar();
    }

Is this at all possible?

Thanks a lot for any help :)

Was it helpful?

Solution

 afterShow: function(){
    $(".textItem").mCustomScrollbar();
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top