Buenas
A ver si alguien me puede echar una mano...Me gustaria saber si es posible (y facil) hacer mediante javascript que un texto sea dinamico.
He probado asi
Código:
<html>
<head>
<script type="text/javascript">
function escribir(texto){
document.texto = texto;
}
</script>
</head>
<body>
<script type="text/javascript">
document.write(texto);
</script>
<br><br>
<a href="javascript:escribir('texto uno');">uno</a>
<br><br>
<a href="javascript:escribir('texto dos');">dos</a>
<br><br>
<a href="javascript:escribir('texto tres');">tres</a>
</body>
</html>
Pero no funciona. ¿Alguien puede ayudarme?.