There's quite a few threads on this already actually. The script by default disables any link within a header if it's set to expand onClick. If it doesn't do this, clicking on a header will simply take the user to another page, instead of expand a sub content. One thing you can do is set the headers to expand onMouseover instead inside the configuration code. When you do that, any link within the header will work:
Code:
ddaccordion.init({
headerclass: "silverheader", //Shared CSS class name of headers group
contentclass: "submenu", //Shared CSS class name of contents group
revealtype: "mouseover", //Reveal content when user clicks or onmouseover the header? Valid value: "click" or "mouseover
collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
defaultexpanded: [0], //index of content(s) open by default [index1, index2, etc] [] denotes no content
onemustopen: true, //Specify whether at least one header should be open always (so never all headers closed)
"
"
Bookmarks