Textarea lags after registering `keydown` events using Javascript - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T13:36:42Zhttp://stackoverflow.com/feeds/question/452895http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/452895/textarea-lags-after-registering-keydown-events-using-javascript4Textarea lags after registering `keydown` events using Javascriptaditya2009-01-17T06:20:35Z2009-01-17T08:37:33Z
<p>How does one go about attaching a bunch of code to an <code>onkeydown</code> event, but keep entering text into a <code>textarea</code> fast and crisp? Anything more than a couple of IF statements seems to slow it down quite considerably.</p>
<p><strong>EDIT</strong>: I should add (can't believe I forgot!) that this doesn't affect desktop browsers. It's mainly an issue with iPhone Safari. Other mobile browsers might be affected as well, but we're focusing on iPhone Safari since it executes JS the best (AFAIK)</p>
http://stackoverflow.com/questions/452895/textarea-lags-after-registering-keydown-events-using-javascript/452919#4529190Answer by Dave for Textarea lags after registering `keydown` events using JavascriptDave2009-01-17T06:50:23Z2009-01-17T06:50:23Z<p>Well, one way to go would be not using onkeydown, but using a timer instead. You can set an interval running a function checking the contents of the TextArea and run your logic there. It seems it would by pass most of the overhead. Anyway, give it a shot, I think it might help.</p>
<p>Here's how you would use it:</p>
<pre><code>// First param is the function to call, second is
// time interval in miliseconds
var timer = setTimeout(checkTextArea(), 5000);
function checkTextArea() {
var text = document.getElementById("textarea").value;
// logic...
timer = setTimeout(checkTextArea(), 5000); // we loop it back to
//the function with the timer
}
</code></pre>
http://stackoverflow.com/questions/452895/textarea-lags-after-registering-keydown-events-using-javascript/452947#4529472Answer by Jonathan Lonowski for Textarea lags after registering `keydown` events using JavascriptJonathan Lonowski2009-01-17T07:37:17Z2009-01-17T08:37:33Z<p>Considering your edit regarding this being focused on iPhone access...</p>
<p>The iPhone really just doesn't have that much power to it. You'll be better off just using <strong><code>onchange</code></strong> or <strong><code>onblur</code></strong> instead of <strong><code>onkeydown</code></strong>.</p>
<p><hr /></p>
<p><hr /></p>
<p>An alternative to Dave's answer is waiting for the user to pause (e.g. for 5 seconds):</p>
<pre><code>var textarea = document.getElementById('textarea');
function checkTextArea() {
if (textarea.value /* ... */) {
/* ... */
}
}
textarea.keyDownTimeout = null;
textarea.onkeydown = function () {
if (textarea.keyDownTimeout) clearTimeout(textarea.keyDownTimeout);
textarea.keyDownTimeout = setTimeout(checkTextArea, 5000);
};
</code></pre>
<p>This should set the timer with the first keydown, stopping and recreating the timer for each successive keydown. Finally calling 5 seconds after the user stops typing.</p>
<p>Also, note the lack of parenthesis after <code>checkTextArea</code>. This will give <code>setTimeout</code> the function's reference vs. its <code>return</code>.</p>
<p><hr /></p>
<p>You can also set this up in a function to make it easier to use for multiple elements:</p>
<pre><code>function setPauseTimer(element, timeout, callback) {
var timer = null;
element.onkeydown = function () {
if (timer) clearTimeout(timer);
timer = setTimeout(function(){ callback(element); }, timeout);
};
}
function checkTextArea(textarea) { /* moved from global to argument */
if (textarea.value /* ... */) {
/* ... */
}
}
setPauseTimer(document.getElementById('textarea'), 5000, checkTextArea);
</code></pre>
http://stackoverflow.com/questions/452895/textarea-lags-after-registering-keydown-events-using-javascript/452960#4529601Answer by le dorfier for Textarea lags after registering `keydown` events using Javascriptle dorfier2009-01-17T07:55:25Z2009-01-17T07:55:25Z<p>Maybe you could post "a bunch of code" and we could discuss whether there's some refactoring there (before complexifying it with a timer). It seems like you might be jumping to secondary optimizations first.</p>
http://stackoverflow.com/questions/452895/textarea-lags-after-registering-keydown-events-using-javascript/452990#4529900Answer by aditya for Textarea lags after registering `keydown` events using Javascriptaditya2009-01-17T08:30:29Z2009-01-17T08:30:29Z<p>I had thought of the timer methods. I believe <code>setTnterval</code> would be better than a <code>setTimeout</code>, but that hardly seems an optimum solution, doesn't it?</p>