I'm trying to create a link to an id tag wich is inside a dropdown menu and is placed on another page.
<a href=index.html#test>link to id tag on another page</a>
The problem is when I click the link it goes to the right page but not shows the content because it is inside a collapsed dropdown bootstrap menu
<ul class="dropdown-menu">
<li><a class="chapter" href="01-primaria.html">
<div class="img-menu">
<img class="img-responsive" src="img/01-primaria.png">
</div>
<div class="titleChapter test">
<strong>01.</strong>
<br>
Vuestro hijo está en Educación Primaria
<small>Victoria Urzáiz Celigueta</small>
</div>
</a></li>
</ul>
I need to deploy the right menu when the link is clicked (I will have more than one menu). Any clue? Thanks!
