[accordion] unobstrusive link on header

[accordion] unobstrusive link on header


hello
I set up an accordion menu here : http://www.logedesgardes.com/
the structure is like
<h3><a href="/real-link-1.html">First link</a></h3>
<h3><a href="/real-link-2.html">Second link</a></h3>
<ul class="submenu">
<li><a href="link.html">submenu1</a></li>
<li><a href="link.html">submenu2</a></li>
<li><a href="link.html">submenu3</a></li>
</ul>
<h3><a href="/real-link-3.html">Third link</a></h3>
<ul class="submenu">
<li><a href="link.html">submenu1</a></li>
<li><a href="link.html">submenu2</a></li>
</ul>
<h3><a href="/real-link-4.html">Fourth link</a></h3>
I'd like to activate the effect with a click on each h3
But I also need the H3 links to function normally when :
- javascript is not active
- when there is no submenu list
For now, I found another way using mouseover to activate the
accordion, so all my links still works
What I look for is something like when we used onClick="return false;"
for unobstrusive links, for the links which have a submenu, so they
only activate the accordion
I wonder if i'm very clear...