I have a simple html5 video tag:
<div id="videoBox">
<video id="video" width="100%" controls loop>
<source src="some_url"></scource>
</video>
</div>
The problem is that how can I get the current height of the video? I have tried by jquery:
$('#videoBox').height();
it return me the size 600px;
but I inspect the div on the page, I see the height is 372px;
So I want to get the value 372px,not 600px.
How can I solve this problem?