Cross browser "jump to"/"scroll" textarea - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:53:53Z http://stackoverflow.com/feeds/question/155306 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/155306/cross-browser-jump-to-scroll-textarea 3 Cross browser "jump to"/"scroll" textarea Ambush Commander 2008-09-30T22:04:20Z 2008-09-30T22:37:17Z <p>I have a textarea with many lines of input, and a JavaScript event fires that necessitates I scroll the textarea to line 345.</p> <p><code>scrollTop</code> sort of does what I want, except as far as I can tell it's pixel level, and I want something that operates on a line level. What also complicates things is that, afaik once again, it's not possible to make textareas not line-wrap.</p> http://stackoverflow.com/questions/155306/cross-browser-jump-to-scroll-textarea/155404#155404 3 Answer by PhiLho for Cross browser "jump to"/"scroll" textarea PhiLho 2008-09-30T22:37:17Z 2008-09-30T22:37:17Z <p>You can stop wrapping with the wrap attribute. It is not part of HTML 4, but most browsers support it.<br /> You can compute the height of a line by dividing the height of the area by its number of rows.</p> <pre><code>&lt;script type="text/javascript" language="JavaScript"&gt; function Jump(line) { var ta = document.getElementById("TextArea"); var lineHeight = ta.clientHeight / ta.rows; var jump = (line - 1) * lineHeight; ta.scrollTop = jump; } &lt;/script&gt; &lt;textarea name="TextArea" id="TextArea" rows="40" cols="80" title="Paste text here" wrap="off"&gt;&lt;/textarea&gt; &lt;input type="button" onclick="Jump(98)" title="Go!" value="Jump"/&gt; </code></pre> <p>Tested OK in FF3 and IE6.</p>