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

后端 未结 6 1891
情深已故
情深已故 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:12

    If you have hidden it with visibility:hidden then you can show it with jQuery by

    $(".Deposit").css('visibility', 'visible');
    

    And in the fiddle you are missing jQuery. Here is a demo: http://jsfiddle.net/9Z6nt/20/

提交回复
热议问题