/readmore-light-js

Minimal responsive jQuery readmore JS with CSS transitions where possible

Primary LanguageCoffeeScriptMIT LicenseMIT

readmore-light-js

Minimal responsive jQuery readmore JS with CSS transitions where possible, use it as it or as a starting point.

It works in production, is tiny and you can check it out here!

Usage

HTML

<div class="faded-read-more read-more-c">
  <div class="read-more">
   Your text is much too long, bro, you should totally shorten it! 
  </div>
</div>

JS

$('.read-more').each ->
  new ReadmoreLight($(this), {
    moreTemplate: $('#more-link-template').html()
    lessTemplate: false
  })