Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript get height. Re: get height.

#141128
Eric Gregoire
Participant
var h = document.getElementById('wrapperDiv').clientHeight;
var h = document.getElementById('wrapperDiv').offsetHeight;

clientHeight includes any vertical padding.

offsetHeight includes any vertical padding, scrollBar, and the border.