Chciałabym wyświetlić tylko kawałek z całego tekstu znajdującego sie w div. Robię to za pomocą kodu
var setSameHeightToAll = function (selector) {
var all = document.querySelectorAll(selector);
var maxHeight = 0;
var length = all.length;
for (var i = 0; i < length; i++) {
if (all[i].getBoundingClientRect().height > maxHeight) {
maxHeight = all[i].getBoundingClientRect().height
}
}
for (var j = 0; j < length; j++) {
all[j].setAttribute('style', 'height:' + maxHeight + 'px');
}
};
ale chciałabym aby na końcu pokazana była ikonka [...], żeby było widoczne, że to nie jest tekst całkowity. Może jakieś sugestie?