Guest User

Untitled

a guest
Dec 15th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $("#latest-news .single-min-news .info-news p a").text(function(i, text) {
  2.  
  3. if (text.length >= 45) {
  4. text = text.substring(0, 50);
  5. var lastIndex = text.lastIndexOf(" ");
  6. text = text.substring(0, lastIndex) + '...';
  7. }
  8.  
  9. $(this).text(text);
  10.  
  11. });
Add Comment
Please, Sign In to add comment