Advertisement
orksnork

Untitled

Jul 15th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.18 KB | None | 0 0
  1. function fadeBack {
  2. $("#content-well").fadeTo('100', 1.0)
  3. }
  4.  
  5. $(window).resize(function() {
  6.     $("#content-well").fadeTo('100', 0.0, function(){
  7.         setTimeout(fadeBack, 100);
  8.     });
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement