I just use jQuery accordion in its basic form. I cannot, for the life of me, find the selected class in this thing. I just want to make some css, for example:
#accordion h2 a.selected { color: #000; }
So, while your single item is selected or active, the title link remains black
I know that this dead is simple, and I did it with other things, I just lost a little in the documentation for this accordion. Is this a different class? Is this something I need to add first?
$(document).ready(function() { $( "#accordion" ).accordion({ autoHeight: false, navigation: true, header: 'h2' }); });
Thanks.
source share