Given this:
<p class="summary">Here is some text, could be 5 words, could be 500 words.</p>
I'm grabbing the paragraph height with this code:
var pHeight = $('.summary').height();
And in my case, if it's greater than 32, it's three lines long (which is too long). In that case, I want to trim the text and insert a "Read More..." link. The problem is, how do I figure out where to trim in order to make the text only take up two lines? If only there were some way I could take the char count and multiply it by some number that is the size of each letter. With monospace that would be relatively simple I think, but this is Arial we're talking about.
Any points in the right direction would be appreciated, thanks!