My CSS:
#content_right_head span { display:inline-block; width:180px; overflow:hidden !important; }
Now it\'s showi
You can try this:
.classname{ width:250px; overflow:hidden; text-overflow:ellipsis; }
var tooLong = document.getElementById("longText").value; if (tooLong.length() > 18){ $('#longText').css('text-overflow', 'ellipsis'); }