I want to call a specific function when the scroll reaches the bottom of the page.
Here is my m code, but it does not work for me. There are no errors in the console, but still does not work.
$(function() { var scrollEnded = $.debounce(500, false, function() { console.log('scroll ended'); alert("ok");
source share