Home › Forums › JavaScript › get height. › Re: get height.
July 1, 2013 at 9:20 am
#141128
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.