Advertisement
orksnork

Untitled

Nov 13th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var heightCheck = {
  2.     size: $(window).height(),
  3.     resize: function(){
  4.         heightCheck.size = $(window).height();
  5.         },
  6.     debug: function(){
  7.         console.log(this.size);
  8.     }
  9. }
  10.  
  11. $(window).resize(function() {
  12.     heightCheck.resize();
  13.     heightCheck.debug();
  14.     });
  15.  
  16.  
  17. $(document).ready(function() {
  18.     heightCheck.debug();
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement