CSS overflow table row positioning - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T06:51:00Z http://stackoverflow.com/feeds/question/52873 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/52873/css-overflow-table-row-positioning 5 CSS overflow table row positioning rp 2008-09-09T20:50:03Z 2008-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#52892 11 Answer by Shog9 for CSS overflow table row positioning Shog9 2008-09-09T20:59:54Z 2008-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>