I got this script
$("body, html").animate({scrollTop: $(document).height()}, 1000)
As seen above it will make so the the page is scrolled down to the documents height: aka the bottom.
However in my case its too far down, I would like to scroll down to bottom:100px;
or bottom:10%;
Is this possible? I found examples but they didn't work for me.
What am I missing to make it work?:)