Guest User

Untitled

a guest
Apr 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $.fn.wait = function(time, type) {
  2. time = time || 1000;
  3. type = type || 'fx';
  4. return this.queue(type, function() {
  5. var self = this;
  6. window.setTimeout(function() {
  7. $(self).dequeue();
  8. }, time);
  9. });
  10. }
Add Comment
Please, Sign In to add comment