How to Collapse and Expand text using jQuery?

1. Include jQuery Ease

<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script>

2.HTML Code

<div id="footer">
    <h6>Important Information</h6>
    <div>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting 
          industry. Lorem Ipsum has been the industry's standard dummy text 
          ever since the 1500s, when an unknown printer took a galley of type 
          and scrambled it to make a type specimen book. It has survived not 
          only five centuries, but also the leap into electronic typesetting, 
          remaining essentially unchanged. It was popularised in the 1960s 
          with the release of Letraset sheets containing Lorem Ipsum passages, 
         and more recently with desktop publishing software like Aldus PageMaker 
         including versions of Lorem Ipsum.</p>
    </div>
</div>

3. jQuery Code

(function($){
    $(document).ready(function() {
        var checked = false;

        $('#footer h6').on('click',function() {
            var _self = $(this);
            
            if(checked == true) checked = false;
            
            if(_self.hasClass('active')) {
                _self.next().slideDown( "slow", 'easeOutCirc', function() {
                    _self.removeClass('active');
                    checked = true;
                });
                
            } else {
                _self.next().slideUp( "slow", 'easeOutCirc', function() {
                    _self.addClass('active');
                    checked = true;
                });
            }
        })  
    });
})(jQuery) 
Working Demo

Comments

Popular posts from this blog

PHP: Date Difference for PHP 5.2

HTML5 video loop src change on end play function

Custom OpenCart 2.3.0.2 theme