My element is set to this line-height:
<div id="line-height" style="line-height:1.5">HOWDY</div>
However, when I try to get the line-height with jQuery, it gives me the pixel version instead of the number version.
var lineheight = jQuery('#line-height').css('line-height');
console.log(lineheight);
And in the console, it returns to me a number with px after it instead of 1.t pt
How can I get the data in the correct format.