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