Here are the settings:
$(function()
{
$('.info').jScrollPane(
{showArrows: true, hijackInternalLinks: true, animateScroll: true}
);
});
The problem is the animateScroll: true
conflicting with the arrows but I need that for my internal anchor links.
I assume this will fix the conflict.
When you click the arrow button: <a class="jspArrow jspArrowDown jspActive"</a>
it will change the jScrollPane settings to animateScroll: false
then when you unclick it reverts to animateScroll: true
I hope this makese sense. Any help would be great.
Edit
Sorry for not getting back sooner. I have set up a demo, as you can see the down arrow doesn't work. I think its related to animateScroll: true
Thanks