0
I have a table with the following structure:
<table id="tab-grid">
<thead></thead>
<tbody></tbody>
</table>
and need to trigger Trigger javascript below when scrolling down:
$('.k-pager-refresh').trigger('click');
Whether it’s pure javascript or jquery, how can I capture the scroll event?
can use
$('#tab-grid').on('scroll', function() { .... });
– Ricardo Pontual