CSS overflow table row positioning - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T06:51:00Zhttp://stackoverflow.com/feeds/question/52873http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/52873/css-overflow-table-row-positioning5CSS overflow table row positioningrp2008-09-09T20:50:03Z2008-09-09T20:59:54Z
<p>I have table inside a div tab. The table has 40 rows in it and the div's height is set to show 10 rows of that table. CSS's overflow:auto lets me scroll through the 40 rows. All is well there. </p>
<p>How can I, with JavaScript cause the table to programatically position to a given row (ie, programmatically scroll the table up or down by row)?</p>
<p>Thank you
rp</p>
http://stackoverflow.com/questions/52873/css-overflow-table-row-positioning/52892#5289211Answer by Shog9 for CSS overflow table row positioningShog92008-09-09T20:59:54Z2008-09-09T20:59:54Z<p>Where <code>superHappyFunDiv</code> is the ID of the container DIV and rows is a 0-based row index:</p>
<pre><code>function scrollTo(row)
{
var container = document.getElementById("superHappyFunDiv");
var rows = container.getElementsByTagName("tr");
row = Math.min(Math.max(row, 0), rows.length-1);
container.scrollTop = rows[row].offsetTop;
}
</code></pre>
<p>Will attempt to scroll the requested row to the top of the container.
Tested in IE6 and FF3.</p>