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!

see http://jsfiddle.net/4pflq/

try this:

$('.mycontent').each(function () {     $(this).scrolltop($(this)[0].scrollheight); }); 

fiddle demo


Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -