Slide down and slide up div on click

后端 未结 3 824
情话喂你
情话喂你 2020-12-20 22:19

I am using the following code to open and close a div ( slide up/down ) using js

I have the slide down event attached to a button and the slide up event sttached to

3条回答
  •  一向
    一向 (楼主)
    2020-12-20 23:00

    try this. it allows multiple items so isn't ID specific. and supports any content loaded via AJAX as well. jsfiddle is here

    Open Close

    and

    $('.toggler').live('click',function(){
      $(this).parent().children().toggle();  //swaps the display:none between the two spans
      $(this).parent().parent().find('.toggled_content').slideToggle();  //swap the display of the main content with slide action
    
    });
    

提交回复
热议问题