I use jquery accordion and it work properly, but I'd like to know if I used the correct syntax.
Here is the code:
- <head>
- <script>
- $(function() {
- $( "#accordion" ).accordion({
- icons: { "header": "ui-icon-circle-triangle-e", "activeHeader": "ui-icon-circle-triangle-s" },
- collapsible: true ,
- active: true
- });
- });
- </script>
- </head>