Skip to content

Instantly share code, notes, and snippets.

@bxh-io
Created September 27, 2013 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bxh-io/6726826 to your computer and use it in GitHub Desktop.
Save bxh-io/6726826 to your computer and use it in GitHub Desktop.
$('.selector').each(function(){
var $this = $(this);
var $text = $this.text();
if($text.length > 10){
$this.text($text.substring(0, 10-3) + "...");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment