If you're basically asking how to enable the link inside the header (so clicking it takes the user to the URL as well), there are two ways:
1) Set the revealtype to "mouseover" inside the config code.
2) Or in v1.7, set the revealtype to "clickgo" instead.
This is the portion of the config code I'm talking about:
Code:
//Initialize first demo:
ddaccordion.init({
headerclass: "mypets", //Shared CSS class name of headers group
contentclass: "thepet", //Shared CSS class name of contents group
revealtype: "mouseover", //Reveal content when user clicks or onmouseover the header? Valid value: "click", "clickgo", or "mouseover"
mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
Bookmarks