1
Hello, I have two pages, one of them contains an anchor for a section of the other page:
<dsp:a page="${publicUrl}${URLs.club}#ancora" class="veja-mais block">
In this other I have one , which is in the right place where it should be directed.
The problem I’m facing is that when I click on the link that contains the anchor, Safari removes the #, thus not directing.
I tried to use a Section, name, class, but it still doesn’t work.
Does anyone know what it might be? In other browsers it works correctly.
Here the codes:
Page 1: <dsp:a page="${publicUrl}${URLs.club}#ancora" class="veja-mais block">
Page 2: <div id="ancora"></div>
I tried to put the /#, but no browser found 404 on the pages.
– Germano
What are the values of ${publicUrl} and ${Urls.club}?
– rla4
${publicUrl} is the main url of the site 'www.site.com.br' and ${Urls.club} is the page '/club'.
– Germano