Jquery .show() not revealing a div with visibility of hidden

后端 未结 6 1900
情深已故
情深已故 2020-11-29 05:36

Basic jQuery question:

I am trying to reveal a div that has been marked as hidden using jQuery. But am not quite getting it

I\'ve created a JSFi

6条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 06:15

    here we go :)

    $(".Deposit").show();
    
        $(".Deposit").fadeOut(500,function(){
            $(this).css({"display":"block","visibility":"hidden"});
    
        });
    

提交回复
热议问题