🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

text-overflow-ellipsis.js is a jQuery plugin for adding in client-side multi-line text overflow based on line number.

read-more Text-Truncating

Documentation

text-overflow-ellipsis

jQuery plugin for adding ellipsis to the end of a multi-line string of text, with additional "view more" animation to open/close on click.

#Setup

  • jQuery: text-overflow-ellipsis should work with most newer versions of jQuery, Have not tested how far back it is supported

  • text-overflow-ellipsis.js: Runs as a jQuery plugin.

  • Call the $.textOverflowEllipsis() plugin.

    $(function(){ $("[data-lines]").each(function(){$(this).textOverflowEllipsis()}); });

#HTML There are minor requirements for having the text-overflow-ellipsis work correctly:

  • Parent container/div, with a data-lines="xx" attribute for how many lines to show

  • Inner block level element with class "full"

  • immediately following the .full element
  • If the "view more" is desired, add

    View More
    immediately after the parent element

    Has attribute data-lines="4". We have a lot of text here, but we want it to overflow correctly. We want to cut off the text at a specific line using the "data-lines='xx'" attribute, so we have the option of 1 to however many lines of text desired. Also added in a specific "view more" link that animates the full text in on click, sliding down or back up depending on if it is open or not already. Now I'm just adding in more text, la di dadi.
    View More

    #Caveats

    • Line height must be set somewhere in the css waterfall
    • Padding on the .short-description will be accounted for, but a margin on the .short/.full will be funky until after the view-more link is clicked

#Notes

If you like to use this script in a environment that changes its size you can consider using the following javascript to reinit the text overflow:

var doReInintTextOverflow;

$(function(){   $("[data-lines]").each(function(){$(this).textOverflowEllipsis()});   $(window).on('resize', function(){     clearTimeout(doReInintTextOverflow);     doReInintTextOverflow = setTimeout(initTextOverflow, 500);   }); });  var initTextOverflow = function(){   $(".short-description").css('height', '');   $(".short-description").removeAttr('style');   $(".short-description .short").html('');   $(".full").removeClass('hide');   $('.js-view-more').css('display', '');   $('.js-view-more').removeAttr('style');    $("[data-lines]").each(function(){$(this).textOverflowEllipsis()}); }; 

You May Also Like