I am trying to get the height of an element in JavaScript after applying one/several CSS3 transformations on it.
#transformed{
transform:scale(.5);
}
Unfortunately, JQuery's outerHeight doesn't seem to do this naively.
$('#after').outerHeight(); //not affected by the transformation
Example: http://jsfiddle.net/mQ2nT/