I am trying to implement an endless scroll functionality to my website and it is not working for some reason; This is the code I have
<script>
$(document).ready(function () {
alert("This part works");
$(window).scroll(function () {
if ($(window).scrollTop() == $(document).height()- $(window).height()) {
alert("You have reached the bottom");
}
});
});
</script>
The first alert box works and that lets me know that Jquery is working and the 2nd alert box is not working when i scroll to the bottom or at all any suggestions?