What's going on?: The animation for my jQuery accordion is broken. It shows the previously opened tab after clicking on the next tab for a short period of time before closing the previous tab. The animation doesn't slide either.
CSS: Found from this answer
/* The following was added into accordion.css */
.ui-accordion .ui-accordion-content { height: auto!important; }
jQuery
$(document).ready(function() {
$("#accordion").accordion({
active: false,
fillSpace: false
});
$("#accordion").accordion("option", "active", false);
$("#accordion").accordion("option", "fillspace", false);
});
What I have tried: I have fiddled around with the values of fillSpace and height. In accordion.css, I tried overflow: visible!important; but the formatting was really messed up.
What I would like to happen: Clean animation with the height of each section depending upon the amount of content in each <div> (AKA what I had for the CSS above).