Return the outer height of a <div> element:
The outerHeight() method returns the outer height of the FIRST matched element.
As the image below illustrates, this method includes padding and border.
Tip: To include the margin, use outerHeight(true).
Related methods:
Parameter | Description |
---|---|
includeMargin | Optional. A Boolean value specifying whether or not to include the
margin
|
Include the margin
Specifiy whether or not to include the margin.
Display dimensions with related methods
How to use width(), height(), innerHeight(), innerWidth(), outerWidth() and
outerHeight().