Dimensions
-
.height()
Get the current computed height for the first element in the set of matched elements.
-
.innerHeight()
Get the current computed height for the first element in the set of matched elements, including padding but not border.
-
.innerWidth()
Get the current computed width for the first element in the set of matched elements, including padding but not border.
-
.outerHeight()
Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin.
-
.outerWidth()
Get the current computed width for the first element in the set of matched elements, including padding and border.
-
.width()
Get the current computed width for the first element in the set of matched elements.