Description
The .innerHeight() method returns the height of the element, including top and bottom padding, in pixels.
Note: This method does not apply to window
and document
objects.
v1.2.6
This method has the form:
.innerHeight()
Return Value
This form returns an Integer object.
Examples
Get the inner height of all p elements:
$("p").innerHeight();