Cross browser "jump to"/"scroll" textarea - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:53:53Zhttp://stackoverflow.com/feeds/question/155306http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/155306/cross-browser-jump-to-scroll-textarea3Cross browser "jump to"/"scroll" textareaAmbush Commander2008-09-30T22:04:20Z2008-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#1554043Answer by PhiLho for Cross browser "jump to"/"scroll" textareaPhiLho2008-09-30T22:37:17Z2008-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><script type="text/javascript" language="JavaScript">
function Jump(line)
{
var ta = document.getElementById("TextArea");
var lineHeight = ta.clientHeight / ta.rows;
var jump = (line - 1) * lineHeight;
ta.scrollTop = jump;
}
</script>
<textarea name="TextArea" id="TextArea"
rows="40" cols="80" title="Paste text here"
wrap="off"></textarea>
<input type="button" onclick="Jump(98)" title="Go!" value="Jump"/>
</code></pre>
<p>Tested OK in FF3 and IE6.</p>