Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     $(function(){
  2.         var windowH = $(window).height();
  3.         $('#tour').css({'height':($(windowH)+'px'});
  4.  
  5.         $(window).resize(function(){
  6.             $('#tour').css('height', (windowH)+'px');
  7.         })          
  8.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement