r2d2
11/27/2018 - 10:00 PM

Read More expanding content

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

.read-more { 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();
});