Advertisement
Guest User

Untitled

a guest
May 27th, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. var resizeId;
  2. $(window).resize(function() {
  3. clearTimeout(resizeId);
  4. resizeId = setTimeout(doneResizing, 500);
  5. });
  6.  
  7. function doneResizing(){
  8. //whatever we want to do
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement