Reputation: 1
$("#browser-by-category, #browser-by-author").accordion({header: "h3",
animated: "slide",
event: "click",
collapsible: true,
active: false,
heightStyle: "content"
});
Error: SCRIPT438: Object doesn't support property or method 'accordion'
Upvotes: 0
Views: 66
Reputation: 4652
Making this an answer, as suggested by @TecHunter above:
The OP seems to have missed adding either the jQuery UI library itself, or the accordion plugin of the jQuery UI library
Upvotes: 1