jQuery('#list1a').Accordion(); jQuery('#list1b').Accordion({ autoheight: true });
You've seen it coming! Buy now and get nothing for free! Well, at least no free beer. Perhaps a bear, if you can afford it.
your bear, you have to admit it! No, we aren't selling bears.
get two for three beer.
And now, for something completely different. And now, for something completely different. And now, for something completely different. And now, for something completely different. And now, for something completely different. And now, for something completely different. And now, for something completely different. And now, for something completely different. Period.
Location-based state-saving: The active element is choosen based on location.hash: Click one of the links, then reload the page to see it in action.
jQuery('#navigation').Accordion({ active: false, header: '.head', navigation: true, event: 'mouseover', autoheight: true, animated: 'easeslide' });
// highly customized Accordion jQuery('#list2').Accordion({ event: 'mouseover', active: '.selected', selectedClass: 'active', animated: "bounceslide" }).change(function(event, newHeader, oldHeader, newContent, oldContent) { jQuery('<div>' + oldHeader.text() + ' hidden, ' + newHeader.text() + ' shown</div>').appendTo('#log'); });
jQuery('#list3').Accordion({ header: 'div.title', active: false, alwaysOpen: false, animated: false });
var wizard = $("#wizard").Accordion({ header: '.title', event: false }); $("div.title", wizard).each(function(index) { $(this) .next() .children(":button") .filter(".next, .previous") .click(function() { wizard.activate(index + ($(this).is(".next") ? 1 : -1)) }); });