I used accordion menu for my web page which is extracted from this site http://www.designchemical.com/lab/jquery-vertical-accordion-menu-plugin/examples/
.If i click the main menu corresponding sub menu opens. If i click the submenu it redirected to the linked page. But the menu is not in opened state
in that page. This is my problem. How can i correct that?
The internal script that i have used is
<script type="text/javascript">
$(document).ready(function($){
$('#accordion-3').dcAccordion({
eventType: 'click',
autoClose: false,
saveState: false,
disableLink: false,
showCount: false,
speed: 'slow'
});
});
</script>