Is it possible to manipulate only part of the URL using DOM or something like this?
I would like to remove the '#' in the middle of the url, in the href attribute.
The code will be added in a Wordpress theme and should be enabled when loading the page.
How are you currently:
<div class="rodape">
<a class="azul" href="http://site.com/departamento/#consultoria-um"
title="Detalhes">Detalhes</a>
<a class="azul" href="http://site.com/departamento/#consultoria-dois"
title="Detalhes">Detalhes</a>
</div>
End result (no link #):
<div class="rodape">
<a class="azul" href="http://site.com/departamento/consultoria-um"
title="Detalhes">Detalhes</a>
<a class="azul" href="http://site.com/departamento/consultoria-dois"
title="Detalhes">Detalhes</a>
</div>