I'm using jQuery cycle to scroll between div's on a single page site. Using hashes in the anchors is not working, as I think cycle is preventing the slider changing.
The markup looks like this;
<nav>
<ul>
<li>Our challenges
<ul>
<li><a href="#explore">Government Current & Emerging Policy</a></li>
<li><a href="#industry">Industry Challenges</a></li>
<li><a href="#bis">BIS Objectives</a></li>
<li><a href="#activities">Activities</a></li>
</ul>
</li>
</ul>
</nav>
<div class="slides">
//divs with id's for navigation
</div>
I know it's possible to use pagerAnchorBuilder to build and populate my nav. but I'm not sure what to pass through, so my list builds.
Can anyone help?