Accordian Example Non-Functional
Hi and thanks I have worked with jQuery for years and I am a big fan, I tried the accordian finally and I can't get the basic example working, I used the code below, if there is something I missed I apologize but I get no response at all and I tried on multiple browsers, Safari, FF, IE,Chrome,Opera.
Any help would be appreciated
thanks
$(function () {
$('#accordian').accordion();
});
<div id="accordion">
<h3>
<a href="#">First header</a></h3>
<div>
First content</div>
<h3>
<a href="#">Second header</a></h3>
<div>
Second content</div>
</div>