Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

stopped typing jquery

var timer = null;
$('#text').keydown(function(){
       clearTimeout(timer); 
       timer = setTimeout(doStuff, 1000)
});

function doStuff() {
    alert('do stuff');
}
 
PREVIOUS NEXT
Tagged: #stopped #typing #jquery
ADD COMMENT
Topic
Name
4+6 =