I\'m trying to change the css property visibility of a div to visiblewith a jQuery .fadeIn()transition.
visibility
visible
.fadeIn()
Here is my code :
You cannot animate visibility. fadein is keyed off display:none;, so that should be #test's initial state via CSS. If you need to keep the layout, you can try wrapping test in a div that specifies the height and/or width you need.
fadein
display:none;
#test