Re: EnableStripScriptTags not working version 6.6

  •  05-31-2010, 7:25 AM

    Re: EnableStripScriptTags not working version 6.6

    Solved.
     
    Remember to put <!-- --> around script code!
     
    Ex

    <script type="text/javascript">

    <!--

    $(document).ready(function() {

    $(".accordion h3:first").addClass("active");

    $(".accordion p:not(:first)").hide();

    $(".accordion h3").click(function() {

    $(this).next("p").slideToggle("fast")

    .siblings("p:visible").slideUp("fast");

    $(this).toggleClass("active");

    $(this).siblings("h3").removeClass("active");

    });

    });

    -->

    </script>

View Complete Thread