Reputation: 3
I have number of comments on my page , so that purpose need to hide all comments. So can any one suggest me best way to collapse/exapand comment section.
.
Upvotes: 0
Views: 93
Reputation: 637
.toggle-target
is a element which height will be changed
.toggle-init
is element on which you click when you want toggle a block
<script>
/* Hide element first */
$('.toggle-target').hide();
/* Toggle element height on init click */
$('.toggle-init').on('click', function(){
$('.toggle-target').slideToggle();
});
</script>
Upvotes: 1