Hola.
Tengo este código:
Código:
<script>
function hash(){
if ( window.location.hash == "#unhashtag" ) {
document.write("zzzzzzzzzzzzzzzz");
}
}
hash();
</script>
Que funciona.
Sin embargo, cuando intento sustituir la zetas por html no me inserta nada.
Así, esto no funciona. No inserta el enlace:
Código:
<script>
function hash(){
if ( window.location.hash == "#unhashtag" ) {
document.write("<a class="nombreclase" href="xxxxxxxxxxxxxx">xxxxxxxxxxxxxx</a>");
}
}
hash();
</script>
Por supuesto, tampoco inserta ningún otro html.
¿Es que document.write no es apropiado para insertarlo?
Gracias.