PHP and javascript snippets you can copy and paste.

Thursday, June 7, 2007

js_get_elementHeight()

/**
* Gets the height of an element.
*
* Credit: http://www.aspandjavascript.co.uk/javascript/javascript_api/get_element_width_height.asp
*/
function js_get_elementHeight(elem) {

if (elem.style.pixelHeight) {
xPos = elem.style.pixelHeight;
}
else {
xPos = elem.offsetHeight;
}
return xPos;

}

No comments: