Basically this function is meant to store the height value of the element that calls it and then if that height matches the element it will expand its height by 200px and if it does not match the stored value it restores that value (in essence shrinking the element container). How do I get it to read from the external style sheet to get the var heightVal = parseInt(boxStyle.height);?

function expand(e){
  var box = document.getElementById(e);
  var boxStyle = box.style;
  var heightVal = parseInt(boxStyle.height);

  if(boxStyle.height == heightVal){
    boxStyle.height = heightVal + 200 +'px';
  }
  else{
    boxStyle.height = heightVal;
  }

}
link|improve this question

Why does offsetHeight not work? – Mike Samuel Jan 31 at 1:39
I just now tried that, but I'm still working out kinks, so I'll get back about that... The problem is that the offsetHeight value is altered every time you use the function and so the element's height always grows. – Proud_to_be Jan 31 at 1:54
2  
Documents have a styleSheets collection, each sheet has rules and each rule has text associated withi it. You can find the appropriate rule, then read the associated text which must be parsed to find the property you want and its associated value. – RobG Jan 31 at 2:14
Thank you, I figured it out. I will post my own answer soon. – Proud_to_be Jan 31 at 2:48
Is there any reason you're not wanting to use JQuery? – inhan Jan 31 at 17:56
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

This is my revised answer... This code allows for the function to be used universally to re-size any elements height regardless of whether you want it to start minimized or maximized and/or whether you want it to expand or collapse. I developed this function as an improvement on the answer I had previously written. This is actually a result of another function I have been working on to change the CSS class to allow for animation without using either javascript nor jquery. I now have both functions working and universal!

The parameters are pretty straight forward... box represents the element you want to resize, hNew represents the height you want to resize it to (can be larger or smaller than the current height of the element and the function still works).

function resize_height(box, hNew){
  if(box.style.height != hNew || box.style.height == box.old_height){
    box.old_height = box.style.height
    box.style.height = hNew;
  }
  else{
    box.style.height = box.old_height;
  }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.