Languages
[Edit]
EN

JavaScript - check if text-overflow ellipsis is active

3 points
Created by:
Eshaal-Wilkinson
774

In this article, we would like to show you how to check if text-overflow: ellipsis is active using JavaScript.

Quick solution:

function isEllipsisActive(element) {
    if (element.clientWidth < element.scrollWidth) {
        var style = element.currentStyle || window.getComputedStyle(element);
        return style.textOverflow === 'ellipsis'
    }
    return false;
}


// Usage example:

const element = document.querySelector('#element');
    
if (isEllipsisActive(element)) {
    // ...
}

Note:

Don't confuse checking if ellipsis is active with checking if text overflows the element.

 

Practical example

In this example, we detect if text overflows element, if it does we additionally check if the element's text-overflow style property value is set to ellipses.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <style>

    div.text {
        padding: 5px;
        width: 200px;             /* <------ optional */
        border: 1px solid red;
        text-overflow: ellipsis;  /* <------ required */
        white-space: nowrap;      /* <------ required */
        overflow: hidden;         /* <------ required */
    }

  </style>
</head>
<body>
  <div id="element-1" class="text">Very short text here</div>
  <div id="element-2" class="text">Very long text here, Very long text here, Very long text here</div>
  <script>
  
    function isEllipsisActive(element) {
        if (element.clientWidth < element.scrollWidth) {
            var style = element.currentStyle || window.getComputedStyle(element);
            return style.textOverflow === 'ellipsis'
        }
        return false;
    }
    
    
    // Usage example:

    const element1 = document.querySelector('#element-1');
    const element2 = document.querySelector('#element-2');
    
    console.log(isEllipsisActive(element1));  // false
    console.log(isEllipsisActive(element2));  // true
  
  </script>
</body>
</html>

 

See also

  1. JavaScript - detect if text overflows element vertically

  2. JavaScript - detect if text overflows element horizontally

  3. JavaScript - detect if text overflows element (horizontally or vertically)

References

  1. text-overflow - CSS: Cascading Style Sheets | MDN

Alternative titles

  1. JavaScript - check if CSS text-overflow ellipsis property is active
  2. JavaScript - is ellipsis active test
  3. JavaScript - detect if CSS text-overflow ellipsis property is active
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join