Here are two method for scrool page down or bottom
$(document).ready(function(){ window.scroll(0,2000); });
scroll page by giving height
$(document).ready(function(){ $(window).scrollTop(jQuery(document).height());});
scroll page by getting window height dynamicaly