Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
Nível 1
Nível 2
Faça login na Comunidade
Faça logon para exibir todas as medalhas
Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
Hi all,
Is it possible to navigate to a different HTML page that is contained within the same article file? E.g. index.html contains an <a> tag that has a href pointing to page2.html? This seems to work in the Preflight app in iOS but not in Windows. Currently, I am using relative links, e.g.
<a href="page2.html">Page 2</a>
Should I be using a different syntax? E.g.
<a href="navto://page2.html">Page 2</a>
Thanks,
Frank
Solucionado! Ir para a Solução.
Visualizações
respostas
Total de curtidas
I found the solution. Use JS instead. windows.location.href appears to work for both ios and windows.
Visualizações
respostas
Total de curtidas
I found the solution. Use JS instead. windows.location.href appears to work for both ios and windows.
Visualizações
respostas
Total de curtidas
Hi!
I'm interested in your solution. What did you exactly do?
Visualizações
respostas
Total de curtidas
You'll have to write some JavaScript to get it working on iOS and Windows. For example:
<a onclick="window.location.href = 'page2.html'">Click me</a>
Visualizações
respostas
Total de curtidas
Great! Thank you so much
Visualizações
respostas
Total de curtidas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas