Hopefully this is a quick and easy one for someone to figure out. I am fairly new to using a lot of javascript/jquery, and I have the following setup to pull a customer name out of a database and display it as the user has finished typing the customer ID.
All works great, but it searches at each keyup. I know I could change it to blur but I want it to search as they go, at a delay.
Here is the current code:
function postData(){
var id = $('#id').val();
$.post('inc/repairs/events-backend.php',{id:id},
function(data){
$("#display_customer").html(data);
});
return false;
}
$(function() {
$("#id").bind('keyup',function() {postData()});
});
As you can see it is binding to each keyup which means that if you search too quick, it may leave you with the wrong result as it was still being loaded. (ie if no matches are found, it displays an error, and typing fast enough leaves the user needing to backspace and retype the last number)
Could someone assist in adding a delay to the existing code, and if possible a small explaination as to the change you made, I rather not just copy and paste without understanding.
---- EDIT ----
This is the code I finished up with, thank you guys!
function postData(){
var id = $('#id').val();
$.post('inc/repairs/events-backend.php',{id:id},
function(data){
$("#display_customer").html(data);
});
return false;
}
$(function() {
var timer;
$("#id").bind('keyup input',function() {
timer && clearTimeout(timer);
timer = setTimeout(postData, 300);
});
});
There are two ways to achieve the same: Approach 1: Using the keypress(), fadeIn(), delay() and fadeOut() methods in the jQuery library and clearTimeout() and setTimeout() methods in native JavaScript.
The keyup() is an inbuilt method in jQuery which is used to trigger the keyup event whenever User releases a key from the keyboard. So, Using keyup() method we can detect if any key is released from the keyboard. Syntax: $(selector).keyup(function)
You should look into the setTimeout
and clearTimeout
functions:
$(function() {
var timer;
$("#id").on('keyup',function() {
timer && clearTimeout(timer);
timer = setTimeout(postData, 300);
});
});
Basically what we're doing is that instead of firing the postData
function immediately, we're passing it to setTimeout
, so that it fires after a given amount of time (in this case, 300 milliseconds).
The setTimeout
function returns a timer ID, which we can then pass to clearTimeout
to cancel that call from ever running. On every keypress, before we set a new timer, we first check if there's a timer set. If there is, we cancel the old timer before starting a new one.
To further enhance this, you can also abort your AJAX call on every keypress, just in case the user typed something after 300+ milliseconds (after the timer fires, but before the AJAX request returned).
P.S. You should check out Ben Alman's throttle/debounce plugin, which would work perfectly here.
Take a look at Underscore's debounce
function - it makes this sort of behavior super straightforward:
$(function() {
$('#id').on('keyup input', _.debounce(postData, 500))
}
This way, the call to postData
will only occur after the user has stopped typing for 500ms
(or whatever you set the debounce wait
to)
Also, I snuck in the input
event to catch additional changes like copy/paste in addition to keystrokes (in modern browsers)
I would delay the search a bit on keyup, but you also need to abort the last request since you can't predict what order they will execute (or you can use a queue for the ajax).
I'll describe all three parts:
Wrap the postData callback in setTimeout
. Store the return value of setTimeout
as $("#id").data('timeout')
and call clearTimeout
on it each time so that the event fires only once per fast string of characters typed.
Store the last request on $("#id").data('lastRequest')
or the like. Each time postData
is called, run $("#id").data('lastRequest').abort()
. Store the return value of $.post()
in that data field. To prevent an error, initialize like this:
$("#id").data('lastRequest', {abort: function () {}));
$("#id").data('lastRequest', true);
...
$.when($("#id").data('lastRequest')).then(function () {
$("#id").data('lastRequest', $.post(...));
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With