Basic jQuery question:
I am trying to reveal a div that has been marked as hidden using jQuery. But am not quite getting it
div
I\'ve created a JSFi
If you have hidden it with visibility:hidden then you can show it with jQuery by
visibility:hidden
$(".Deposit").css('visibility', 'visible');
And in the fiddle you are missing jQuery. Here is a demo: http://jsfiddle.net/9Z6nt/20/