Due to environment I would like to constrain this to something small and concise rather than a plugin, unless it's an extension that can be put inline aside other jquery code.
I have this code:
$("#txtSearch").live('keyup', function () {
LoadList(1)
});
I'd like to add a delay such that if a user must wait (as in stop typing) 0.5 seconds before a call is executed.
So basically if letters are typed with less than X time between consecutive keystrokes no ajax call occurs.
Is there a tiny concise way to do this with Jquery?