I am trying to create an anchor in order to be able to build such an URL :
www.mysite.com/#myAnchor
which should automatically link to the div wanted, even from an exterior website. However, when I am trying to implement it, here is the adresse to which I am redirected : www.mysite.com/#/myAnchor
So far, I tested different things such as :
<a name="myAnchor" />
<a name="#myAnchor"></a>
<a name="myAnchor"></a>
<a href="#myAnchor" target="_self"></a>
<span class="anchor " id="myAnchor"></span>
But nothing seems to work. However when I am on the page I can change the url to go there but from "outside" this just redirects to the top of the page.
Thanks for your help.