I’m having difficulty getting a jqueryui accordion to function. Even copying the example from the jquery website into jsfiddle it still doesn’t seem to work.
HTML
<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>
js
$(document).ready(function() {
$("#accordion").accordion();
});
Viewable in jsfiddle at http://jsfiddle.net/FYrBS/103/
Add this in the head. It is working Here.