user1796992
user1796992

Reputation: 1

jquery code doesn't support in internet explorer 8 or nine

$("#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

Answers (1)

Filippos Karapetis
Filippos Karapetis

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

Related Questions