Fading visibility of element using jQuery

前端 未结 5 1673
广开言路
广开言路 2020-12-13 09:02

I\'m having some trouble with finding the visibility param for JQuery.

Basically... the code below does nothing.

$(\'ul.load_details\').animate({
            


        
5条回答
  •  无人及你
    2020-12-13 09:24

    This might help:

    $(".pane .delete").click(function(){
        $(this).parents(".pane").animate({ opacity: 'hide' }, "slow");
    });
    

提交回复
热议问题