$(function(){
// for window is footer?
$(document).scroll(function(){
var isFoot = ($(window).scrollTop() + $(window).height()) == $(document).height() ? alert("The window is Footer"):'';
})
//for div is footer?
$(".scollBar").scroll(function(){
var isFoot = ($(this).scrollTop() + $(this).height()) == $(".contentSc").height() ? alert("The div is Footer"):'';
})
});
loading