Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$("a.newslinks").each(function(){
        if ($(this).text().length > 38) {
            $(this).text().substr(35); //does not work
            $(this).append('...'); //works
            $(this).css({ "color" : "#ff00cc" }); //works
        }
    });

If a link has its text longer than 38 characters, how can I trim it to 35 chars and add an elipses at the end?

share|improve this question

2 Answers

up vote 8 down vote accepted

substr(35) will chop 35 characters off the start of the string - not limit it to 35 chars in length.

Try:

.substr(0, 35)

Also, this function just returns a new string - it doesn't change the original. So you need to do

$(this).text($(this).text().substr(0, 35)); 
share|improve this answer

Try:

$(this).text($(this).text().substr(0, 35)); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.