Guest User

Untitled

a guest
Feb 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. function heigtSet() {
  2. $('#printoutput>div').each(function(){
  3. console.log('test');
  4. console.log($(this).find('#adaptation .adaptationCnt').height());
  5. console.log($(this).find('#adaptationDetail .adaptationCnt').height());
  6. if ($(this).find('#adaptation .adaptationCnt').height()>$(this).find('#adaptationDetail .adaptationCnt').height()){
  7. $(this).find('#adaptationDetail .adaptationCnt').height($(this).find('#adaptation .adaptationCnt').height()-15);
  8. }else{
  9. $(this).find('#adaptation .adaptationCnt').height($(this).find('#adaptationDetail .adaptationCnt').height()+15);
  10. }
  11. });}
Add Comment
Please, Sign In to add comment