{"name":"innerHeight","type":"method","title":".innerHeight()","deprecated":null,"removed":null,"desc":"Get the current computed height for the first element in the set of matched elements, including padding but not border.","categories":["css","dimensions","manipulation/style-properties","version/1.2.6"],"entries":[{"return":"Number","signatures":{"added":"1.2.6"},"examples":{"desc":"Get the innerHeight of a paragraph.","code":"\nvar p = $( \"p:first\" );\n$( \"p:last\" ).text( \"innerHeight:\" + p.innerHeight() );\n","css":"\n p {\n margin: 10px;\n padding: 5px;\n border: 2px solid #666;\n }\n","html":"\n
Hello
\n\n"},"longdesc":"\nThis method returns the height of the element, including top and bottom padding, in pixels.
\nThis method is not applicable to window and document objects; for these, use .height() instead.
\n
\n