Gettin div's height?

Gettin div's height?

It is supposed that dimensions plugin is already integrated into jquery code, so, how can I get the total height of a div (including contents, padding, margin, etc...) ??
I have been trying with:
var divHeight = $('#thediv').height();


An also with:

var divHeight = $('#thediv').outerHeight();


But none seem to work.