HosipLan

Untitled

Apr 2nd, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var loadPage = false;
  2.  
  3. el.keyup(function () {
  4.     if (loadPage) {
  5.         clearTimeout(loadPage);
  6.         loadPage = false;
  7.     }
  8.  
  9.     loadPage = setTimout(function () {
  10.         // load next page
  11.     }, 1000);
  12. });
Advertisement
Add Comment
Please, Sign In to add comment