Advertisement
Guest User

Untitled

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