Open In App

How to count text lines inside of DOM element ?

In this article, we will see how to count the number of text lines inside of the DOM element. To count the number of text lines inside the DOM element, we will use the following approach.

Example: This example uses the above approach and prints the number of text lines inside the DOM element.




<h1 style="color: green;">
    GeeksForGeeks
</h1>
  
<div id="content" style="width: 100%; 
                line-height: 20px">
    hello how are you?<br>
    hello how are you?<br>
    hello how are you? <br>
    hello how are you?<br>
</div>
  
<button onclick="countLines()">
    Count lines
</button>
  
<script>
    // Function to count total
    // number of lines
    function countLines() {
      
        // Get element with 'content' as id                            
        var el = 
            document.getElementById('content');
      
        // Get total height of the content    
        var divHeight = el.offsetHeight
      
        // object.style.lineHeight, returns 
        // the lineHeight property
        // height of one line 
        var lineHeight = 
            parseInt(el.style.lineHeight);
      
        var lines = divHeight / lineHeight;
        alert("Lines: " + lines);
    }
</script>

Output:

How to count text lines inside of DOM element ?


Article Tags :