Advertisement
Guest User

Untitled

a guest
Feb 14th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var footer_height = $("html").outerHeight(true) - $("#footer").offset().top;
  2. $("#footer").height(footer_height);
  3.  
  4. console.log(footer_height);
  5. // Output:
  6. // FF - 3395.39990234375
  7. // Opera - 1484
  8. console.log($("#footer").offset().top);
  9. // Output:
  10. // FF - 1679.60009765625
  11. // Opera - 1680
  12. console.log($("html").outerHeight(true))
  13. // Output:
  14. // FF - 5075
  15. // Opera - 3164
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement