Mobile phone bill, Q coins, game recharge
width() - Returns the width of the element.
height() - Returns the height of the element.
The innerWidth() method returns the width of the element (including padding). The innerHeight() method returns the height of the element (including padding). The outerWidth() method returns the width of the element (including padding and borders).
outerHeight() method returns the height of the element (including padding and border).
outerWidth(true) method returns the width of the element (including padding, border and margin).
outerHeight(true) method returns the height of the element (including padding, border and margin).
Returns the height of the document (HTML document) $(document).height()
Returns the window (browser viewport) $( window).height()