I'm trying to catch the height of .ui-header
to be able to have my dynamic program.
It turns out that the height you are giving me is incorrect.
The code to catch the height of .ui-header
:
//Altura do header
var lv_headerHeight = $(".ui-header").outerHeight();
alert("HEADER " + lv_headerHeight);
This alert
is returning:
ButusingtheChromedevtools,itindicatesthattheheightof.ui-header
is:
How can I get this last value? Thank you for your attention.
That is, I have this header:
The alert is giving me an incorrect height value while Chrome dev tools gives me the correct value. But I'm not getting it.