I am using jquery CustomScrollbar plugin. Link http://manos.malihu.gr/jquery-custom-content-scroller/
I am loading my data through ajax. The code is as below
$(window).load(function(){
$(".top-heading-section3").mCustomScrollbar({
advanced:{
updateOnContentResize: true
}
}
);
});
And when the ajax is complete i do :
$(".top-heading-section3").mCustomScrollbar('update')
But still i get mCS_no_scrollbar class on all divs and the scrollbar is not coming.
Where am i going wrong?