my jQuery skills are pretty good normally but this is driving me mad!
It\'s a fairly simple accordian I\'ve coded up from scratch. Using jQuery 1.3.2 so there should
I must admit I've found my own dynamic solution now.
http://www.mizudesign.com/jquery/accordian/basic.html should be fixed.
It's very simple really - just adds the height using .css before hiding the div. Works a treat :)
$("#PlayerButtonsContent div").each (function() {
$(this).css("height", $(this).height());
});
$("#PlayerButtonsContent div").hide();