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/
精彩评论