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

I have a collection of block elements on a page. They all have the CSS rules white-space, overflow, text-overflow set so that overflowing text is trimmed and an ellipsis is used.

However, not all the elements overflow.

Is there anyway I can use javascript to detect which elements are overflowing?

Thanks.

Added: example HTML structure I am working with.

<td><span>Normal text</span></td>
<td><span>Long text that will be trimmed text</span></td>

The SPAN elements always fit in the cells, they have the ellipsis rule applied. I want to detect when the ellipsis is applied to the text content of the SPAN.

share|improve this question
Duplicate: stackoverflow.com/questions/143815/… – jantimon Oct 12 '11 at 9:58
Not a duplicate! That question is on about one element within another, parent element. I am talking about text within a single element. In my case, the SPAN in the TD never overflow the TD, it's the text within the SPAN that overflows, and gets trimmed. That's what I am trying to detect! Sorry - I could have posed this question better I admit. – deanoj Oct 12 '11 at 10:13
Oh, I forgot to add - this only need to work on webkit if that helps... – deanoj Oct 12 '11 at 10:15
Did you try the solution provided? – jantimon Oct 12 '11 at 10:17
I did Ghommey just to see if it did work...it didn't. – deanoj Oct 12 '11 at 10:18
show 1 more comment

2 Answers

up vote 4 down vote accepted

I saw a really hacky way once, it seems dodgy to me, but it works so that's the main point. Basically the idea is that you clone the element, remove any bounding width, and see if the cloned element is wider than the original. If so, you know it's going to have been truncated.

I made a jsFiddle to demonstrate this, http://jsfiddle.net/cgzW8/2/

Hopefully this helps, hacky as it is.

share|improve this answer
thanks christian, i have seen this before and it looks like this is the only option available to me. – deanoj Oct 13 '11 at 13:20
Could this work with cloning the text, and seeing if texts match or not? – Lauri Apr 4 at 14:33
1  
@Lauri No; CSS truncation doesn't change the actual text in the box, so the content is always the same, whether it's truncated, visible, or hidden. There is still no way to programatically get the truncated text, if there was then you wouldn't need to clone the element in the first place! – Christian Varga Apr 5 at 21:08

Try this JS function, passing the span element as argument:

function isEllipsisActive(e) {
     return (e.offsetWidth < e.scrollWidth);
}
share|improve this answer

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.