Truncate text with the jTruncate jQuery Plugin
I stumbled across this pretty useful jQuery Plugin the other day that i though some of you would appreciate. It was written by Jeremy Martin a few years back. The plugin solves a big problem in that, if you have too much text you can not truncate it, or split it into two section allowing you to hide and reveal the text when needed. The plugin works well if you have have for example a set of user generated comments where you want to keep the height of a specific div a consistent height, but allow for a read more button.
The Code
implementation of any jQuery plugin is relatively pain free due to the framework architecture. For those who are yet to use plugins, you need to include the jQuery framework – I generally use the google jQuery hosted file which can be found here, you will also see other frameworks hosted here for those who don’t know. You will notice there are several parameters that can be adjusted below, ‘length’ being the main option that allows you to adjust how much text is initially shown. You’ll find the complete documentation for the plugin here.
$().ready(function() {
$('.text').jTruncate({
length: 200,
minTrail: 0,
moreText: "Read More",
lessText: "Read Less",
ellipsisText: " (Click below to continue reading)"
});
});
This is certainly a great little plugin that gets around the need to use server side scripts shorten text.





Good article.
I have one question.
I have a one page which contain two section 1 and 2
section1 contain 3 more and less link and section2 also contain 5 more and less link then how to we customize it.
I want all less and more link controll by only one function.
is it possible by “jtruncate-jquery-plugin”?.
Thanks
@brijkishor if your text is going to be all the same length, this shouldn’t be a problem, however if you want the text different lengths you’ll have to create several instances of the code in your page, which possibly might not be the best solution.
How can I add a class to the links? I want to add the class “button” to them to use a customized style.
Leave a comment...
Connect
Latest Poll
Recent Posts