I am using height() / width() method but its returning value without it\'s padding and margin values. I am not having problem to calculate total with / height values.
Use outerWidth(); and outerHeight();
var ele = $('div'); var eleW = ele.outerWidth(true); var eleH = ele.outerHeight(true);