What's the right way to get the total height of a div element? I'm trying this:
element.outerHeight(true); but when I take a screenshot of my page, and measure the height (in pixels) of the element, it seems to be a few pixels taller than what element.outerHeight() is reporting. Is there a different way? I'd like to include all padding/margin in my height.
Thanks