I have a filter and when you try to change the level of experience the page goes to the very top. my code looks like this:
Visual: https://i.stack.imgur.com/CZ3Y6.jpg
<ul class="SecondNavigation">
<li>
<nav class="CategoriesNaviation">
<h3>Experience Filter</h3>
<ul>
<li>
<a href="/">
<i class="fa fa-list fa-fw fa-2x"></i>
<span>No Filter</span>
</a>
</li>
<li class="Selected">
<a href="/Beginner/">
<i class="fa fa-list fa-fw fa-2x"></i>
<span>Beginner</span>
</a>
</li>
<li>
<a href="/Intermediate/">
<i class="fa fa-list fa-fw fa-2x"></i>
<span>Intermediate</span>
</a>
</li>
<li>
<a href="/Advance/">
<i class="fa fa-list fa-fw fa-2x"></i>
<span>Advance</span>
</a>
</li>
</ul>
</nav>
</li>
Question: Is there a way to disable the page from moving to the top after the user clicks on the anchor?