Guest User

Untitled

a guest
Apr 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var parent_height = $(".reportWrapper").height();
  2.  
  3. var children_height = 0;
  4.  
  5. $(".reportWrapper > *").each(function() {
  6. children_height += $(this).height();
  7. });
  8.  
  9.  
  10. if(parent_height <= children_height)
  11. {
  12. //Do Stuff Here...
  13. }
Add Comment
Please, Sign In to add comment