I\'m dynamically adding rows to a table using jQuery. The table is inside a div which has overflow:auto thus causing a vertical scroll
table
div
overflow:auto
If you just want to scroll, you could use jQuery's scrollTop method. http://docs.jquery.com/CSS/scrollTop
var table = jQuery( 'table' ); table.scrollTop( table.find( 'tr:last' ).scrollTop() );
Something like that maybe?