Skip to content

Instantly share code, notes, and snippets.

@OleksandrLz
Created December 10, 2016 09:54
Show Gist options
  • Select an option

  • Save OleksandrLz/d6506c4a5d67c766fc2002356cedf05e to your computer and use it in GitHub Desktop.

Select an option

Save OleksandrLz/d6506c4a5d67c766fc2002356cedf05e to your computer and use it in GitHub Desktop.
cut long text
<!-- html code -->
<div class="news-content">Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Facere nostrum neque quae aliquid magnam quibusdam nesciunt,
totam sit, autem quas accusamus
</div>
// js code
var size = 10,
newsContent= $('.news-content'),
newsText = newsContent.text();
if(newsText.length > size){
newsContent.text(newsText.slice(0, size) + ' ...');
}
<!-- RESULT -->
Lorem ipsu ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment