How to get jQuery DIV height?
$('.bar2').animate({'height':'58' + "%"},1500);
When I check the elements in chrome, I see that my div height is set to 58%
<div class="bar2" style="height: 58%; background-image: ......>
I tried this:
var bar2 = $(".bar2").height(), or var bar2 = $(".bar2").css('height'),
but I always get my "minimum height" which is 70 pixels, not the height set by jQuery
source
share