I love the functionality of the jQuery accordion (http://jqueryui.com/demos/accordion/) however I do not want the style !!
I\'d like to get rid of all the styles, the im
You can make your own accordion. Using the jQuery accordion without the UI is pointless. Creating your own accordion adapted to your site is kind of easy. You just need to fix the way you want to build it...let's say:
Then, you just need to make something like
//On click any within the container
$('#container a').click(function(e) {
//Close all but the right after the clicked
$(e.target).next('div').siblings('div').slideUp();
//Toggle open/close on the
- 热议问题