Show div after scrolling 100px from the top of the page
$(window).scroll(function() {
if ($(window).scrollTop() > 100) {
// > 100px from top - show div
}
else {
// <= 100px from top - hide div
}
});code type:
Taken from:
https://stackoverflow.com/questions/13195048/show-div-after-scrolling-100px-from-the-top-of-the-page
