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
var rowpos = $('#table tr:last').position(); $('#container').scrollTop(rowpos.top);
should do the trick!