We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
.section-2
<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?
.section-1
The text was updated successfully, but these errors were encountered:
You won't be able to use internal anchors/links when using pagePiling.js.
pagePiling.js think they belong to the anchors of a section and will try to scroll to them thus creating the issue.
Sorry, something went wrong.
Thanks.
No branches or pull requests
I'm using Page Pilling with following configuration:
Inside my
.section-2
, I have some links that I use to control my TabBar:When I click in one of theses links, Page Pilling Redirects me to
.section-1
, why?The text was updated successfully, but these errors were encountered: