ltchurch88t
11/26/2018 - 8:42 PM

Read More - Expand Text

Must include "read-more" class on div with content that is hidden before expanding.

         display: none;
}```

a tag to allow js to activate is as follows

```<a href="#read-more">... Read More</a>```
$('a[href="#read-more"]').click(function(e){
  e.preventDefault();
  $(this).hide();
  $('.read-more').slideDown();
});