One
The width () method sets or returns the widths of elements (excluding padding, borders, or margins).
The height () method sets or returns the heights of the elements (excluding padding, borders, or margins).
Two
The Innerwidth () method returns the width of the element, including the padding.
The Innerheight () method returns the height of the element, including the padding.
Three
The Outerwidth () method returns the width of the element (including padding and borders).
The Outerheight () method returns the height of the element, including padding and borders.
Four
The Outerwidth (True) method returns the width of the element (including padding, borders, and margins).
The Outerheight (True) method returns the height of the element (including padding, borders, and margins).
JQuery offers several important ways to handle dimensions: width () height () innerwidth () innerheight () outerwidth () Outerheight ()