document.addEventListener("scroll",function(e){
var height = Math.max( document.body.scrollHeight, document.body.offsetHeight, document.documentElement.clientHeight, document.documentElement.scrollHeight, document.documentElement.offsetHeight );
if(window.scrollY + window.innerHeight >= height ){
//тут скрипт
}
});