Multi-Line Truncation A method for truncating wrapped text, using jQuery. There's native CSS3 truncation for one line, but nothing for wrapped text. There are a number of solutions for this elsewhere; I mix and matched a lot of them into something I thought worked best. Works in Chromes, Firefoxes, and IE8 and up. ## To Use Scripts and stylesheets to call. I call the latest jQuery version, but as long as it's v1.6+, it should be fine: https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js css/styles.css js/script.js Reference the `multilineTruncation` function, passing in the `.truncateThisText` CSS class: Check the actua stylesheet for further comments on the CSS. To truncate more than two lines, you'd have to adjust some things there. To Do/Ideas [ ] Make the function not dependent on a specific CSS class to work, or only as another option [ ] Make truncation character and styles as paramters to pass in, so there's more options. [ ] Figure out how to move ellipses to the edge of text--see the edge case on the demp [ ] ECMA6-ify it?