Try something like this to place the scroll at the bottom of the item
$("html, body").animate({ scrollTop: $('selector').offset().top + $('selector').outerHeight(true) }, 500);
Or this to put an item at the bottom of the scroll:
$("html, body").animate({ scrollTop: $('selector').offset().top + $('selector').outerHeight(true) -$(window).height() }, 500);
source share