Find us on facebook

Showing posts with label JQuery. Show all posts
Showing posts with label JQuery. Show all posts

Oct 16, 2014

Event triggers when typing complete on a text box

        var typingTimer;              
var doneTypingInterval = 2000;

$('input[name="optpeople_return_2"]').keyup(function(){
clearTimeout(typingTimer);
typingTimer = setTimeout(getPriceWithVehicles, doneTypingInterval);
});

$('input[name="optpeople_return_2"]').keydown(function(){
clearTimeout(typingTimer);
});