Upon click of my button I'm trying to set the page to scroll to 1000px down.
I've tried:
$(window).scrollTop(1000);
And
$(document).scrollTop(1000);
And
$('body').scrollTop(1000);
Jquery is in my page so that is not the issue. Any ideas?