Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm wondering if there's a way to count lines inside a div for example. Say we have a div like so:

<div id="content">hello how are you?</div>

Depending on many factors, the div can have one, or two, or even four lines of text. Is there any way for the script to know?

In other words, are automatic breaks represented in DOM at all?

share|improve this question

6 Answers

If the div's size is dependent on the content (which I assume to be the case from your description) then you can retrieve the div's height using:

var divHeight = document.getElementById('content').offsetHeight;

And divide by the font line height:

document.getElementById('content').style.lineHeight;

Or to get the line height if it hasn't been explicitly set:

var element = document.getElementById('content');
document.defaultView.getComputedStyle(element, null).getPropertyValue("lineHeight");

You will also need to take into account padding and any inter-line spacing.

EDIT

Full self contained test, explicitly setting line-height:

<html>
<script>
function countLines() {
    var divHeight = document.getElementById('content').offsetHeight;
    var lineHeight = parseInt(document.getElementById('content').style.lineHeight);
    var lines = divHeight / lineHeight;
    alert("Lines: " + lines);
}
</script>
<body onload="countLines();">
<div id="content" style="width: 80px; line-height: 20px;">
hello how are you? hello how are you? hello how are you? hello how are you?
</div>
</body>
</html>
share|improve this answer
It's a good start except that the line-height may not always have been set. You should get that from computed style of the element. – Chetan Sastry Apr 23 '09 at 23:17
Ta, updated to include computed style – Pool Apr 23 '09 at 23:29
On second thoughts, the line-height need not always be numeric (or in pixels). So if your code relies on it and your CSS convention permits it, you should probably set a line height in pixels. – Chetan Sastry Apr 23 '09 at 23:35
2  
@Chetan - setting text dimensions in pixels is generally considered a bad thing. astahost.com/Sizes-Webdesign-Em-Vs-Px-t8926.html – annakata Apr 24 '09 at 8:35
1  
This may only work in simplest case (like my example). If there are spans inside, inline-block elements and so on, straightforward division by (parent) font-size is worthless. Still, it is better than nothing, thanks. – buti-oxa Apr 24 '09 at 16:38
show 1 more comment

One solution is to enclose every word in a span tag using script. Then if the Y dimension of a given span tag is less than that of it's immediate predecessor then a line break has occurred.

share|improve this answer
Clever! How do you do that? I guess you assume text only paragraph (as I have in the example). I did not have this limitation in mind, but it may be OK, provided the script does not crash when there is something else inside the paragraph. – buti-oxa Jan 11 '10 at 15:51
On second thought, this method fails if there are vertically aligned spans in the line. So, even text only paragraph may be counted wrongly. – buti-oxa Jan 12 '10 at 16:00
My div has text and images... luckily the images are absolutely positioned so I think they would be excluded. :D Anyways I used the same code you suggested but with a div not a span, thank you though +1! – Albert Renshaw Jan 16 at 16:42

No, not reliably. There are simply too many unknown variables

  1. What OS (different DPIs, font variations, etc...)?
  2. Do they have their font-size scaled up because they are practically blind?
  3. Heck, in webkit browsers, you can actually resize textboxes to your heart's desire.

The list goes on. Someday I hope there will be such a method of reliably accomplishing this with JavaScript, but until that day comes, your out of luck.

I hate these kinds of answers and I hope someone can prove me wrong.

share|improve this answer

You should be able to split('\n').length and get the line breaks.

update: this works on FF/Chrome but not IE.

<html>
<head>
<script src="jquery-1.3.2.min.js"></script>
<script>
    $(document).ready(function() {
        var arr = $("div").text().split('\n');
        for (var i = 0; i < arr.length; i++)
            $("div").after(i + '=' + arr[i] + '<br/>');
    });
</script>
</head>
<body>
<div>One
Two
Three</div>
</body>
</html>
share|improve this answer
1  
Try it and let us know how that goes. I'm dead serious, not being sarcastic. You can use this code in FireBug's console on this very page. var the_text = $('.welovestackoverflow p').text(); var numlines = the_text.split("\n").length; alert(numlines); – KyleFarris Apr 24 '09 at 4:43
2  
Thanks for this surprize, I did not know it is possible, but this is not what I want. Jquery seems to count hard line breaks in the source, and I am interested in automatic line breaks in the result. In the case of your "One Two Three" div, the result should be 1, because browser put all text into one line. – buti-oxa Apr 24 '09 at 16:30
Then I misunderstood your question. You want to find the computed line-height then. – Chad Grant Apr 26 '09 at 2:13
up vote 2 down vote accepted

I am convinced that it is impossible now. It was, though.

IE7’s implementation of getClientRects did exactly what I want. Open this page in IE8, try refreshing it varying window width, and see how number of lines in the first element changes accordingly. Here’s the key lines of the javascript from that page:

var rects = elementList[i].getClientRects();
var p = document.createElement('p');
p.appendChild(document.createTextNode('\'' + elementList[i].tagName + '\' element has ' + rects.length + ' line(s).'));

Unfortunately for me, Firefox always returns one client rectangle per element, and IE8 does the same now. (Martin Honnen’s page works today because IE renders it in IE compat view; press F12 in IE8 to play with different modes.)

This is sad. It looks like once again Firefox’s literal but worthless implementation of the spec won over Microsoft’s useful one. Or do I miss a situation where new getClientRects may help a developer?

share|improve this answer
As pointed out by Mozilla's element.getClientRects documentation, at least for inline elements the W3C spec does result in a rect for each line of text — not ideal, but something at least. – natevw Mar 21 '12 at 20:27

For those who use jQuery http://jsfiddle.net/EppA2/3/

function getRows(selector) {
    var height = $(selector).height();
    var line_height = $(selector).css('line-height');
    line_height = parseFloat(line_height)
    var rows = height / line_height;
    return Math.round(rows);
}
share|improve this answer
jsfiddle.net/EppA2/9 is less accurate, but according to this may be better supported by various browsers – Bohdan Penkovsky Feb 16 at 19:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.