Guest User

Untitled

a guest
May 3rd, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $(document).ready(function() {
  2.  
  3. function heightDetect() {
  4. $(".main_head").css("height", $(window).height());
  5. }
  6.  
  7. heightDetect();
  8. $(window).resize(function(){
  9. heightDetect();
  10. })
  11.  
  12. });
Add Comment
Please, Sign In to add comment