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.

link|improve this question

Duplicate: stackoverflow.com/questions/143815/… – Ghommey 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? – Ghommey 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
feedback

2 Answers

up vote 2 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.

link|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
feedback

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

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

Your Answer

 
or
required, but never shown

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