$('.button-more').on('click tap', function (e) {
e.preventDefault();
var $this = $(this);
if ( ! $this.hasClass('active') ) {
$this.parent().find('p').slideDown(300);
$this.find('span').text('Less');
} else {
$this.parent().find('p:not(:first)').slideUp(300);
$this.find('span').text('Read More');
}
$this.toggleClass('active');
});