scroll always bottom jquery code example
Example: jquery scroll to bottom
$(window).load(function() {
$("html, body").animate({ scrollTop: $(document).height() }, 1000);
});
$(window).load(function() {
$("html, body").animate({ scrollTop: $(document).height() }, 1000);
});