Guest User

Untitled

a guest
Jun 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function setHeights(){
  2. heights_left = [];
  3. heights_right = [];
  4. var thisheight = 0;
  5.  
  6. $("#lead1 td").livequery(function(){
  7. thisheight = parseInt($(this).height());
  8. heights_left.push(thisheight);
  9. });
  10.  
  11. $("#lead2 td").livequery(function(){
  12. thisheight = parseInt($(this).height());
  13. heights_right.push(thisheight);
  14. });
  15.  
  16. console.log(heights_left);
  17. }
Add Comment
Please, Sign In to add comment