Hi,
I would like to know how to make a link on the differents section of the jquery accordion .
<h3><a href="www.google.fr">Section 1</a></h3>
// if i try this, the link activate the menu
// i 'd like to use this link to go to google.fr
// for example here or an internal link.
i put an exemple :
<div id="accordion">
<h3><a href="www.google.fr">Section 1</a></h3>
<p>
<a href="#">Test</a>
Mauris mauris ante, blandit et, ultrices a, susceros. Nam mi.
Proin viverra leo ut odio. Curabitur malesuada.
Vestibulum a velit eu ante scelerisque vulputate.</p>
</div>
</div>
I finally found my answer with prevent :default in the event
but i thought in php instead of thinking in ajax
in fact it has no sense to use it like this with the refresh page .
so for my php i used accordion with no-auto-height and i make dynamic link
i think it's the beginning of a long way with jquery :)