开发者

How can I modify they behaviour of this jQuery Accordion?

开发者 https://www.devze.com 2023-03-05 00:07 出处:网络
I\'m using a slightly extended jQuery accordion: http://jsfiddle.net/AuJvc/ I\'ve modified the accordion to allow multiple panels to be open at once, as outlined here: Looking for a JQuery plug-in si

I'm using a slightly extended jQuery accordion: http://jsfiddle.net/AuJvc/

I've modified the accordion to allow multiple panels to be open at once, as outlined here: Looking for a JQuery plug-in similar to Acc开发者_JAVA技巧ordian, but that allows multiple sections open at once

If you check the jsfiddle example, you can see that when you click the title (Charges & Fees), the accordion scrolls up & to the left. How can I change this so that it just goes up?


Change

.toggle("slow");

To

.slideToggle("slow");

Fiddle: http://jsfiddle.net/AuJvc/1/

0

精彩评论

暂无评论...
验证码 换一张
取 消