Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to trigger an ajax request when the user has finished typing in a text box. I don't want it to run the function on every time the user types a letter because that would result in A LOT of ajax requests, however I don't want them to have to hit the enter button either.

Is there a way so I can detect when the user has finished typing and then do the ajax request?

Using jQuery here! Dave

share|improve this question
4  
I think you'll need to define "finish typing" for us. – Surreal Dreams Nov 18 '10 at 22:14
3  
While @Surreal Dreams' answer satisfies most of your requirements, if the user starts typing again AFTER the specified timeout, multiple requests will be sent to the server. See my answer below which stores each XHR request in a variable and cancels it before firing off a new one. This is actually what Google does in their Instant search. – Marko Nov 18 '10 at 22:33
possible duplicate of jquery keyup delay? – CMS Nov 18 '10 at 23:43
The chosen answer is incorrect for a few reasons: 1. It always fires after 5 seconds even if user is typing. 2. It doesn't wait until user has finished typing as requested. 3. It fires multiple requests as mentioned by @Marko above. See my corrected answer below. – xiaohouzi79 May 8 '11 at 10:28
"Don't want to send ajax requests, don't want the user to be forced to hit enter." Man, there is just no pleasing some people. – Louis Jul 3 '12 at 13:35

14 Answers

up vote 74 down vote accepted

So, I'm going to guess finish typing means you just stop for a while, say 5 seconds. So with that in mind, lets start a timer when the user releases a key and clear it when they press one. I decided the input in question will be #myInput.

Making a few assumptions...

//setup before functions
var typingTimer;                //timer identifier
var doneTypingInterval = 5000;  //time in ms, 5 second for example

//on keyup, start the countdown
$('#myInput').keyup(function(){
    typingTimer = setTimeout(doneTyping, doneTypingInterval);
});

//on keydown, clear the countdown 
$('#myInput').keydown(function(){
    clearTimeout(typingTimer);
});

//user is "finished typing," do something
function doneTyping () {
    //do something
}
share|improve this answer
1  
+1 Great answer. – lonesomeday Nov 18 '10 at 22:20
Thanks :) I started typing my comment on the question and realized I had a decent idea. – Surreal Dreams Nov 18 '10 at 22:22
Sorry to be a pain in the @ss, but you've got keyup twice instead of keydown on the 2nd event, and textbox isn't a valid selector since there isn't a textbox element :) – Marko Nov 18 '10 at 22:35
4  
This answer does not work correctly, it will always fire after 5 seconds unless the user types very slowly. See working solution below. – xiaohouzi79 May 8 '11 at 10:07
1  
If you run into trouble here, because the timer fires immediately, try to add quotes around the function call: setTimeout('functionToBeCalled', doneTypingInterval); – Largo Jul 13 '12 at 10:08
show 3 more comments

The chosen answer above does not work.

Because typingTimer is occasionaly set multiple times (keyup pressed twice before keydown is triggered for fast typers etc.) then it doesn't clear properly.

The solution below solves this problem and will call X seconds after finished as the OP requested. It also no longer requires the redundant keydown function. I have also added a check so that your function call won't happend if your input is empty.

//setup before functions
var typingTimer;                //timer identifier
var doneTypingInterval = 5000;  //time in ms, 5 second for example

//on keyup, start the countdown
$('#myInput').keyup(function(){
    clearTimeout(typingTimer);
    if ($('#myInput').val) {
        typingTimer = setTimeout(doneTyping, doneTypingInterval);
    }
});

//user is "finished typing," do something
function doneTyping () {
    //do something
}
share|improve this answer
I believe the problem you are having is that you are typing fast enough that you push the second key before releasing the first. – Mala Feb 11 '12 at 0:57

I'm using this jQuery plugin with success:

github.com/narfdotpl/jquery-typing

share|improve this answer
2  
This is a brilliant plugin and seems to have gone unnoticed! This also supports the backspace key which some others don't. – nik0lias Jul 3 '12 at 9:07
1  
+1 BEST ANSWER!! Fixes all the other problems I had with the others. – daviesgeek Nov 12 '12 at 0:10
2  
The fork github.com/m1ket/jquery-typing also supports text changes caused by paste events. – koppor May 2 at 20:22
Awesome plugin! – jaywink May 23 at 9:31

Yes, you can set a timeout of say 2 seconds on each and every key up event which will fire an ajax request. You can also store the XHR method and abort it on subsequent key press events so that you save bandwith even more. Here's something I've written for an autocomplete script of mine.

var timer;
var x;

$(".some-input").keyup(function () {
    if (x) { x.abort() } // If there is an existing XHR, abort it.
    clearTimeout(timer); // Clear the timer so we don't end up with dupes.
    timer = setTimeout(function() { // assign timer a new timeout 
        x = $.getJSON(...); // run ajax request and store in x variable (so we can cancel)
    }, 2000); // 2000ms delay, tweak for faster/slower
});

Hope this helps,

Marko

share|improve this answer
1  
Me like save bandwidth! :-) – fishwebby Mar 2 at 9:31

Well, strictly speaking no, as the computer cannot guess when the user has finished typing. You could of course fire a timer on key up, and reset it on every subsequent key up. If the timer expires, the user hasn't typed for the timer duration - you could call that "finished typing".

If you expect users to make pauses while typing, there's no way to know when they are done.

(Unless of course you can tell from the data when they are done)

share|improve this answer

I don't think keyDown event is necessary in this case (please tell me why if I'm wrong). In my (non-jquery) script similar solution looks like that:

var _timer, _timeOut = 2000; 



function _onKeyUp(e) {
    clearTimeout(_timer);
    if (e.keyCode == 13) {      // close on ENTER key
        _onCloseClick();
    } else {                    // send xhr requests
        _timer = window.setTimeout(function() {
            _onInputChange();
        }, _timeOut)
    }

}

It's my first reply on Stack Overflow, so I hope this helps someone, someday:)

share|improve this answer
var timer;
var timeout = 1000;

$('#in').keyup(function(){
    clearTimeout(timer);
    if ($('#in').val) {
        timer = setTimeout(function(){
            //do stuff here e.g ajax call etc....
             var v = $("#in").val();
             $("#out").html(v);
        }, timeout);
    }
});

full example here: http://jsfiddle.net/ZYXp4/8/

share|improve this answer

Once you detect focus on the text box, on key up do a timeout check, and reset it each time it's triggered.

When the timeout completes, do your ajax request.

share|improve this answer

You can use the onblur event to detect when the textbox loses focus: https://developer.mozilla.org/en/DOM/element.onblur

That's not the same as "stops typing", if you care about the case where the user types a bunch of stuff and then sits there with the textbox still focused.

For that I would suggest tying a setTimeout to the onclick event, and assuming that after x amount of time with no keystrokes, the user has stopped typing.

share|improve this answer

I dont know if it is what you want but you can try the onblur event link text

share|improve this answer

It's just one line with underscore.js debounce function:

$('#my-input-box').keyup(_.debounce(doSomething , 500));

This basically says doSomething after 500 milliseconds I stopped typing.

For more info: http://underscorejs.org/#debounce

share|improve this answer
Seems to be available for jQuery, too: code.google.com/p/jquery-debounce and github.com/diaspora/jquery-debounce – koppor May 2 at 11:37

If you are looking for a specific length (such as a zipcode field):

$("input").live("keyup", function( event ){
if(this.value.length == this.getAttribute('maxlength')) {
        //make ajax request here after.
    }
  });
share|improve this answer

Not sure if my needs are just kind of weird, but I needed something similar to this and this is what I ended up using:

$('input.update').bind('sync', function() {
    clearTimeout($(this).data('timer'));            
    $.post($(this).attr('data-url'), {value: $(this).val()}, function(x) {
        if(x.success != true) {
            triggerError(x.message);    
        }
    }, 'json');
}).keyup(function() {
    clearTimeout($(this).data('timer'));
    var val = $.trim($(this).val());
    if(val) {
        var $this = $(this);
        var timer = setTimeout(function() {
            $this.trigger('sync');
        }, 2000);
        $(this).data('timer', timer);
    }
}).blur(function() {
    clearTimeout($(this).data('timer'));     
    $(this).trigger('sync');
});

Which allows me to have elements like this in my application:

<input type="text" data-url="/controller/action/" class="update">

Which get updated when the user is "done typing" (no action for 2 seconds) or goes to another field (blurs out of the element)

share|improve this answer

You can try "onchange" attribut to run your ajax request.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.