I have a problem regarding accordion effect I want to make.
I would like to have following functionality - If you press anywhere in "div.post" the text surrounded in "p.read-more", which is hidden from start, slides down and reveal itself. Then to close it, you need to press "div.close".
I have tried something like this, but frankly, as you probably can see, I'm lost :-)
This is the HTML
<div class="post">
<p>This is a beginning of a text.</p>
<p class="read-more">... This is the rest of the text</p>
<div class="close">This is a close button</div>
</div>
I have tried something like this
$("p.read-more").hide();
$('div.post').click(function(){
$(this).toggleClass("active");
});
if( $('div.post').hasClass('active') ) {
$('div.close').click(function(){
$(this).find(".read-more").slideUp();
});
} else {
$(this).click(function() {
$(this).find(".read-more").slideDown();
});
}
Thank you for any help.