Jquery - I have problem with accordion
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/
Change
$(".accordionBlock").toggle('fast');
to
$(".accordionBlock").toggle();
to remove the animation. This produces a show/hide effect.
精彩评论