JQUERY | |
1 2 3 4 5 6 7 | jQuery(window).scroll(function () { if (jQuery(window).scrollTop() == 0) alert('Scroll en haut de page'); else if (jQuery(window).height() + jQuery(window).scrollTop() == jQuery(document).height()) { alert('Scroll en bas de page'); } }); |
TAGs : JQUERY detect scroll TOP / BOTTOM