Hello how can i catch a scrolling event in jQuery datatable ?
I don't have a "bServerSide"
I have already tried :
$(".dataTables_scrollBody").scroll(function(){
console.log("scroll");
});
$("#idOfMyTable").scroll(function(){
console.log("scroll");
});
How can I accomplish this?
.scroll()event to the.dataTables_scrollBodyelement?