I'm trying to shorten the length of columns in a certain table.

I'm using some jQuery to add text-overflow ellipsis and a few more css properties.
I also add a tooltip using some more jQuery. Here's my code:

$('#table_id tr td:not(:last)').css({
"text-overflow": "ellipsis",
"max-width": "110px",
"overflow": "hidden",
"display" : "block"
}).each(function (index, element) { $(element).attr("title", $(element).text()); });

Everything works fine in Firefox and Chrome, but (surprise! surprise!) IE7-9 renders the text in it's full length.

Any idea what am I doing wrong? Thanks!

P.S.
I've also tried specifying the "width" property with no avail.

link|improve this question

70% accept rate
1  
try adding white-space: nowrap and width:100%. – rcode Dec 12 '11 at 13:57
feedback

1 Answer

You need white-space:nowrap; on the td as well. Additionally, table-layout:fixed; must be set on the table itself, or IE still won't cut off the text.

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.