Accordion - what am I supposed to do?
I can't get the
accordion to work. I don't even know if I've forgotten something important, or if I've just made a minor error somewhere..?
This is in the header:
- <link rel="stylesheet" type="text/css" href="css/ui-lightness/jquery-ui-1.8.11.custom.css">
- <script type="text/javascript" src="js/jquery-1.5.1.min.js"></script>
- <script type="text/javascript" src="js/jquery-ui-1.8.11.custom.min.js">
- $(function() {
- $( "#accordion" ).accordion();
- });
- </script>
- ¨
And this is the body:
- <div id="accordion">
- <h3><a href="#">Header</a></h3>
- <div>
- <span>Text</span>
- </div>
- <h3><a href="#">Header2</a></h3>
- <div>
- <span>Text</span>
- </div>
- <h3><a href="#">Header3</a></h3>
- <div>
- <span>Text</span>
- </div>
- <h3><a href="#">Header4</a></h3>
- <div>
- <span>Text</span>
- </div>
- </div>
What am I supposed to do to make it work?