vote up 2 vote down star
1

Hi Again Masters Of The Web :) Now, I have got a new stupid question, and I am asking to forgive me. I read everywhere about this solution, but didn't find the one that works for me.

I have got:

<input name="domain" type="text" id="domain" onKeyUp="javascript:chk_me();">

All I am asking is how to make this not to check after a button is pressed, but after to say 1000 miliseconds of keyboard inactivity?

flag

75% accept rate

4 Answers

vote up 5 vote down check

try this:

var timer;
    function chk_me(){

       clearTimeout(timer);
       timer=setTimeout(function validate(){...},1000);
    }

in this way every time a key is pressed the timeout will be deleted and the set again.

link|flag
1  
I think var timer needs to be outside the function body – Rodrigo Sep 4 at 22:17
you are right the timer must be set outside the function, i've edit the answer – mck89 Sep 4 at 22:18
Thanks! Best answer of the lot by a fair margin. – Shog9 Sep 4 at 22:22
do you think that use validate.apply(this) will work? i don't know how to preserve the this context – mck89 Sep 4 at 22:22
Hi all. No, this does not work again :( I'm sorry for my stupid questions, but... where I must put this? Inside <head> tags, or in <body>? Whatever, I tried both methods, and It doesn't works :( See by yourself: spoonk.eu/includes/home/domain/domain.php – Spoonk Sep 4 at 22:23
show 13 more comments
vote up 3 vote down

Another approach, without globals:

var typewatch = function(){
    var timer = 0;
    return function(callback, ms){
        clearTimeout (timer);
        timer = setTimeout(callback, ms);
    }  
}();

Usage:

Attaching the event through JavaScript:

window.onload = function () {
    document.getElementById('domain').onkeyup = function() {
        typewatch(function(){alert('Time elapsed!');}, 1000 );
    };
};

Or using an inline event handler (not so much recommended) as you have in your example:

<input type="text" name="domain" id="domain"
   onKeyUp="typewatch(function(){alert('Time elapsed!');}, 1000 );"/>

Try a demo here.

link|flag
What makes you think that typewatch is not global? – Josh Stodola Sep 4 at 22:45
yes typewatch is global, but I mean that the timer variable is not in the global scope, and can be only accessed by the typewatch function. – CMS Sep 4 at 22:48
+1 Understood. – Josh Stodola Sep 4 at 22:51
vote up -1 vote down

setTimeOut() would be the one ;)

<input name="domain" type="text" id="domain" onKeyUp="setTimeout('chk_me()',1000);">

link text

link|flag
This will not preserve the value of the this context variable when calling chk_me(). Also, using the variation of setTimeout() that takes and evaluates a string containing code is both pointless in this scenario and messy in all scenarios. – Shog9 Sep 4 at 22:17
Hi Berzemus, thanks for your reply. I've all ready tried this. It works, but the problem is that it does not delays the script execution itself. It delays after every single key press... – Spoonk Sep 4 at 22:17
vote up -1 vote down

You can try the settimeout method:

javascript:setTimeout("chk_me()", 1000)
link|flag

Your Answer

Get an OpenID
or

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