Advertisement
srikat

Untitled

Feb 25th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // Set home hero content height to viewport height
  2. var windowHeight = $( window ).height();
  3.  
  4. $( '#home-hero-content' ) .css({'height': windowHeight +'px'});
  5.  
  6. $( window ).resize(function(){
  7.  
  8. var windowHeight = $( window ).height();
  9.  
  10. $( '#home-hero-content' ) .css({'height': windowHeight +'px'});
  11.  
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement