G Naresh
G Naresh

Reputation: 3

Can we collpase comment section on disqus plugin?

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. U Can see Attachmet.

Upvotes: 0

Views: 93

Answers (1)

Beneris
Beneris

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

Related Questions