Hi,
I want to insert a jQuery Easy Accordion Plugin (ORIGIN:
What I did:
1.created file accordionslider.js in directory ..
$(document).ready(function () {
$('#accordion-container').easyAccordion({
autoStart: true,
slideInterval: 3000
});
});
2. put the file jquery.easyAccordion.js in the same directory (the file is downloaded from the site)
3. put the following code in the PageLines>Site Options>Custom code>Headerscripts Code:
4.put the following html on my new page:
<div id="accordion-container">
<dl>
<dt>Title slide</dt>
<dd>You can put here any kind of content (divs, text, images, etc.)…</dd>
<dt>One more</dt>
<dd>You can put here any kind of content (divs, text, images, etc.)…</dd>
<dt>Another slide</dt>
<dd>You can put here any kind of content (divs, text, images, etc.)…</dd>
</dl>
</div>
I see the text, as it is, but no slider...
What did i do wrong?












