Advertisement
Guest User

Untitled

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