toggle fade in/fade out animate

toggle fade in/fade out animate

Hi

I would like to have the content container slide out as a dropdown fade effect.

I currently have this but i can't get my head around to using the fade

  1. //Hide (Collapse) the toggle containers on load
        $(".toggle_container").hide();

        //Switch the "Open" and "Close" state per click
        $("h2.trigger").toggle(function(){
            $(this).addClass("active");
            }, function () {
            $(this).removeClass("active");
        });

        //Slide up and down on click
        $("h2.trigger").click(function(){
            $(this).next(".toggle_container").slideToggle("slow");
        });












and this is my markup

  1. <h2 class="trigger">Data Collection</h2>
    <div class="toggle_container">
    <div class="block">
    <p>If you choose to use our Products or Services, we may require you to provide contact and identity information, billing information, and other personal information as indicated on the Site.  Such user information will only be used for the purposes for which it was collected, for any other purposes specified at the collection point and in accordance with this Privacy Policy.</p>
    <br/>
    <h2>How We may use your Data</h2>
    <p>By entering your User Information, you accept that we may retain your User Information and that it may be held by us or any third party company which processes it on Our behalf.</p>
    <br />
    <p>We shall be entitled to use your User Information for the following purposes:</p>
    <p><ul>
        <li>in order to enable Us to comply with any requirements imposed on us by law.</li>
        <li>in order to send you periodic communications (this may include e-mail), about features, products and services, events and special offers. Such communications from Us may include advertising for third party companies or organisations.</li>
    </ul></p>

    <p>For your convenience you can withdraw consent by replying to the &quot;unsubscribe&quot; link in e-mails from us.</p>
    <br />
    <p>Please also note that we do not disclose your personal/user information to third parties to enable them to send you direct marketing without your explicit consent. </p>
    <br/>

















Your help would be much appreciated.

Thanks
Jess