Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created September 3, 2019 19:03
Show Gist options
  • Save Farmatique/840f0b09df91b487a575ae9857cff629 to your computer and use it in GitHub Desktop.
Save Farmatique/840f0b09df91b487a575ae9857cff629 to your computer and use it in GitHub Desktop.
Shortify text, make short text, make excerpt using jQuery
var text = "This is your title";
var shortText = jQuery.trim(text).substring(0, 10)
.split(" ").slice(0, -1).join(" ") + "...";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment