Layout Options

  • Fixed Header
    Makes the header top fixed, always visible!
  • Fixed Sidebar
    Makes the sidebar left fixed, always visible!
Introduction
Webconcept

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();

Description

The .outterHeight() method returns the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin.

Note: This method does not apply to window and document objects.


v1.2.6

This method has the form:

.outterHeight(includeMargin)
Parameter Description
includeMargin (optional) A Boolean indicating whether to include the element's margin in the calculation

Return Value

This form returns a Integer object.

Examples

Get the outter height of all p elements:

$("p").outterHeight();