Display the_content on click jquery

Please try the following javascript you need to add class to a tag for read more

<a class="readmode">Read More</a>

$('.readmode').click(function() {
     $(this).siblings('.pop').slideToggle();
     return false;
}); 

Here is the demo http://jsfiddle.net/fvcvyc1e/4/