Reputation: 2356
I have done accordion, see the jsfiddle link, when click on the view accordion div will show.
In that accordion div , i have a another block with title "upstage" and "downstage". when accordion div show the inner block comes from the left to right, and hide from the right to left.
How to stop that animation. i need that inner block should place in the right side.
please help me out
Here jsfiddle link: http://jsfiddle.net/thilakar/RNqEs/1/
Upvotes: 0
Views: 75
Reputation: 2613
Change
$(".accordionBlock").toggle('fast');
to
$(".accordionBlock").toggle();
to remove the animation. This produces a show/hide effect.
Upvotes: 1