javascript - How do I wait until the user has finished writing down in a text input to call a function? -
I am preparing a web site and I want to be able to call 1 second function after the end user input. I tried to use on the Kue, but waited for 1 second after the first keystroke.
Does anyone know how this would be possible?
Another similar approach without the globe:
var typewatch = Function () {var timer = 0; Return work (callback, ms) {clear timeout (timer); Timer = settimeout (callback, ms); }} ();
...
& lt; Input type = "text" onKeyUp = "trivch (function () {warning ('time has passed!');}, 1000);" / & gt;
You can snippet it.
Comments
Post a Comment