Created
September 3, 2019 19:03
-
-
Save Farmatique/840f0b09df91b487a575ae9857cff629 to your computer and use it in GitHub Desktop.
Shortify text, make short text, make excerpt using jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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