Skip to content

Instantly share code, notes, and snippets.

@chy4egg
Last active March 14, 2018 07:20
Show Gist options
  • Save chy4egg/a092d5836d60dacc0dc7fbc5fb1ab5bf to your computer and use it in GitHub Desktop.
Save chy4egg/a092d5836d60dacc0dc7fbc5fb1ab5bf to your computer and use it in GitHub Desktop.
Ограничение контента по высоте с добавлением отточия. (content height limit with '...' in the end)
function ellipsizeTextBox(id, height) {
var el = document.getElementById(id);
el.style.maxHeight = height;
var wordArray = el.innerHTML.split(' ');
if (height) {
el.style.maxHeight = height;
}
while(el.scrollHeight > el.offsetHeight) {
wordArray.pop();
el.innerHTML = wordArray.join(' ') + '...';
}
}
ellipsizeTextBox("someElementId", "110px");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment