Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function heightDetect()
  2. {
  3. $('.main_head').css('height', $(window).height());
  4. }
  5.  
  6. heightDetect();
  7. $(window).resize(function(){
  8. heightDetect();
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement