Nathan Klatt
Sun, 28 Feb 2010 07:20:48 -0800
On Sun, Feb 28, 2010 at 12:00 AM, Erik <eriks...@mac.com> wrote:
> { $(this).removeClass("ui-state-active"); }
No, don't do that - that'll screw up the accordion, I expect. I mean
something in the css like:
.ui-state-active:hover {
background-color: inherit; /* or "none" or some specific color */
}
Nathan