I want the height of a container element, including margins and paddings.
When I hover over the element in Chrome development tool, I get the value that I\'m lookin
I think you might need
.outerHeight({margin: true});
As per here:
The margin can be included by passing an options map with margin set to true.