jQuery UI accordion not working
I have been working an example from Lynda.com showing how to use the accordion widget, but cant get to work.
- <html xmlns="http://www.w3.org/1999/xhtml"><head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>Untitled Document</title>
- <script src="jquery.js"></script>
- <script src="jquery-ui-1.8.23.custom.min.js"></script>
- <script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v5.0.1.min.js"></script>
- <script>
- window.onload=function(){
- $("#accordion").accordion();};
- console.log("onload");
- </script>
- </head>
- <body>
- <div id="accordion"><h3><a href="#">x</a></h3><div><p> Attribute Information</p></div><h3><a href="#">y</a></h3><div><p> Attribute Information</p></div><h3><a href="#">radius</a></h3><div><p> Attribute Information</p></div><h3><a href="#">fill</a></h3><div><p> Attribute Information</p></div><h3><a href="#">stroke</a></h3><div><p> Attribute Information</p></div><h3><a href="#">draggable</a></h3><div><p> Attribute Information</p></div><h3><a href="#">opacity</a></h3><div><p> Attribute Information</p></div><h3><a href="#">strokeWidth</a></h3><div><p> Attribute Information</p></div></div>
- </body></html>
- Please comment