I have a <span> text that is not determined by height. The text inside is inserted dynamically and varies from each instance of this gap to another. Is there a way to use jQuery to determine the height of this range?
Here is what I tried:
parseInt($('span.tag_title', container).outerHeight(true), 10)
But this does not return anything if I do not define a span in CSS?
Does anyone know how to fix this?
source share