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.

i am looking for a jQuery plugin that does this:

original:

i am such a nice guy that just needs to become a lot more concise.... help me... help me...

needed

i am such a nice guy that... [see more]

Requirements:

  • cut by word, not character length
  • very light and simple, no mess needed!
share|improve this question

2 Answers

up vote 12 down vote accepted

I just hacked this together.

You can use it by calling trunc on all of the elements you want to have a see more label on. You pass it an argument of the maximum number of words in the un-expanded text.

Example:

// truncate all text in elements with class "truncateme" to be 10 words or less
// (until you click the "see more" link)
$(".truncateme").trunc(10);
share|improve this answer
2  
+1 nice work... – hunter Jan 20 '11 at 3:26
Very nice tip. Is there any way to animate the effect? Something like slideDown()? – Fabio Jul 20 '11 at 21:03
@Fabio: You could probably achieve that one way or another, but there's no dead-simple way to do that. You could have it slideUp, expand/collapse the text, and then slideDown. Not as seamless as just sliding in the previously-truncated text, but it's still a little animation if you feel obligated to throw some in. – icktoofay Jul 22 '11 at 5:41

If CSS3 is an option for you, you can use the text-overflow property.

If not, here is a list of jQuery plugins that do what you are looking for

share|improve this answer
good to know css3 has that! unfortunately, it is not an option (for now) ;) – ming yeow Jan 20 '11 at 4:14

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.