Go to Design /Library / Layouts / AccordionJQ / Accordion Setup.
To make all top-level links clickable:
Look for the line:
Code: Select all
$('#dpacmn > div').each(function(){ // look for empty entries and disable arrows & click
Code: Select all
$("#dpacmn h4 a").click(function() {
window.location = $(this).attr('href');
return false;
});