.outerWidth( [includeMargin ] )Returns: Number
Description: Get the current computed outer width (including padding, border, and optionally margin) for the first element in the set of matched elements.
-
version added: 1.2.6.outerWidth( [includeMargin ] )
-
includeMargin (default:
false)Type: BooleanA Boolean indicating whether to include the element's margin in the calculation.
-
Returns the width of the element, including left and right padding, border, and optionally margin, in pixels. If called on an empty set of elements, returns undefined (null before jQuery 3.0).
This method is not applicable to window and document objects; for these, use .width() instead. Although .outerWidth() can be used on table elements, it may give unexpected results on tables using the border-collapse: collapse CSS property.
Additional Notes:
-
The number returned by dimensions-related APIs, including
.outerWidth(), may be fractional in some cases. Code should not assume it is an integer. Also, dimensions may be incorrect when the page is zoomed by the user; browsers do not expose an API to detect this condition. -
The value reported by
.outerWidth()is not guaranteed to be accurate when the element or its parent is hidden. To get an accurate value, ensure the element is visible before using.outerWidth(). jQuery will attempt to temporarily show and then re-hide an element in order to measure its dimensions, but this is unreliable and (even when accurate) can significantly impact page performance. This show-and-rehide measurement feature may be removed in a future version of jQuery.
Example:
Get the outerWidth of a paragraph.
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
|