I want to alert something when the scroll reaches the BOTTOM of the page, like this:
$(function(){ $(document).scroll(function() { if($(document).scrol
document.onscroll = function() { if(!document.body.scrollTop){ alert('top'); } }
JSFiddle demo