Skip to content

Instantly share code, notes, and snippets.

@opi
Created August 15, 2012 11:26
Show Gist options
  • Save opi/3359320 to your computer and use it in GitHub Desktop.
Save opi/3359320 to your computer and use it in GitHub Desktop.
Drupal jQuery.ui accordion
<?php
drupal_add_library('system', 'ui.accordion');
drupal_add_js('jQuery(document).ready(function(){
jQuery("#wrapper").accordion({
header: ".header",
autoHeight: false,
clearStyle: true,
collapsible: true
});
});', 'inline');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment