How do I animate the page down 100px from where it currently is?
my code doesn't work:
$('html,body').animate({
scrollTop: $(window).position().top + 100
})
like this, but without it scrolling the page to a specific element, instead, scrolling 100px from the windows current position:
$('html, body').animate({
scrollTop: $("#scrollToHere").offset().top
}, 2000);