Scroll to bottom of a <div> with jQuery on page load (multiple <div>) -
i know has been answered here scroll bottom of div on page load (jquery), solution not working, when having more 1 <div>
different heights.
$('.mycontent').scrolltop($('.mycontent')[0].scrollheight);
is not working multiple <div>
different heights!
try this:
$('.mycontent').each(function () { $(this).scrolltop($(this)[0].scrollheight); });
Comments
Post a Comment