I'm using Page Pilling with following configuration:
$( document ).ready(function() {
/* Page Pilling */
$('#pagepiling').pagepiling({
anchors: ['home'],
menu: '#menu-header'
});
});
Inside my .section-2, I have some links that I use to control my TabBar:
<ul class="menu d-flex flex-wrap list-inline h100p">
<li class="online-startegies">
<a class="active" href="#online-strategies">Online Startegies</a>
</li>
<li class="online-startegies">
<a class="active" href="#services">Servicess</a>
</li>
</ul>
When I click in one of theses links, Page Pilling Redirects me to .section-1, why?