Why this animate display none to block not working ?
First code look like this, and it's work good
$(".box_outer").stop().animate({top: '25px' , opacity: 1}, 100);
When i add display: none;
to class box_outer
and add , display: 'block'
My function animate not work , how can i do that ?
$(".box_outer").stop().animate({top: '25px' , display: 'block' , opacity: 1}, 100);