I have got a span with dynamic data in my page that contain ellipsis. Meaning:

<span style='text-overflow: ellipsis; overflow : hidden; white-space: nowrap;  
 width: 71;'>${myData}</span>

and I'd like to add to this element tooltip with the same content (title='${myData}') but I want it to appear only when the content is long and the ellipsis appear on screen.
Is There any way to do it?

one direction - when the browser (IE in my case) draw ellipsis- does it throw an event about it?

link|improve this question

70% accept rate
Bear in mind that text-overflow:ellipsis; doesn't work at all in Firefox -- see this question for more: stackoverflow.com/questions/4927257/… – Spudley Mar 29 '11 at 16:16
I just had to do something similar. Checking whether element.offsetWidth < element.scrollWidth as per this answer seems to work so far. – Martin Smith Apr 18 at 11:02
feedback

2 Answers

If you want to do this solely using javascript, I would do the following. Give the span an id attribute (so that it can easily be retrieved from the DOM) and place all the content in an attribute named 'content':

<span id='myDataId' style='text-overflow: ellipsis; overflow : hidden;
 white-space: nowrap; width: 71;' content='{$myData}'>${myData}</span>

Then, in your javascript, you can do the following after the element has been inserted into the DOM.

var elemInnerText, elemContent;
elemInnerText = document.getElementById("myDataId").innerText;
elemContent = document.getElementById("myDataId").getAttribute('content')
if(elemInnerText.length <= elemContent.length)
{
   document.getElementById("myDataId").setAttribute('title', elemContent); 
}

Of course, if you're using javascript to insert the span into the DOM, you could just keep the content in a variable before inserting it. This way you don't need a content attribute on the span.

There are more elegant solutions than this if you want to use jQuery.

link|improve this answer
Nice. Since I am using JQuery in other part of this page - what is the JQuery elegant solution?? – Spiderman Mar 29 '11 at 16:16
$("#myDataId").attr("title", function() { var innerText = $(this).text(); var content = $(this).attr("content"); if (innerText.length <= content.length) { return content; } return null; }); – Mark Costello Mar 29 '11 at 16:55
I tried your first suggestion with pure javascript - it doesn't work. the 'innerText' property save the complete length of the text even if it not show completely on screen so always: elemInnerText.length == elemContent.length !! – Spiderman Mar 30 '11 at 8:21
The style of your span is width 71. Why not check if the width of the string is longer than that? If you wanted to do something really funky, you could add a hidden element without the text-overflow:ellipsis set and compare the widths of both. If the hidden one is wider than the non-hidden one, add a title attribute to the visible one. – Mark Costello Mar 30 '11 at 14:28
feedback

spiderman! i'm having the same problem myself. the browser doesn't seem to know it's text gets truncated. All DOM attributes show no trace of it.
of course you could change the overflow to visible, measure the width, then return to overflow hidden then compare. this is an ugly solution and for me it's not realistic because i have loads of data on the screen and i'm not going to loop through them all. sketchy code: (loopy and wasteful)

for(elem in group){
   elem.style.overflow = 'visible';
   var originalWidth = elem.offsetWidth;
   elem.style.overflow = 'hidden';
   if(elem.offsetWidth > originalWidth)
       elem.title = elem.innerHTML;
}

if you got something more substantial and less 'patchy' please let know.

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.