Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/02/2011, 09:40
jectorv
 
Fecha de Ingreso: febrero-2011
Mensajes: 7
Antigüedad: 13 años, 9 meses
Puntos: 0
Respuesta: Poner un mismo texto en tres divs distintos

Hola he intentado hacer algo y no lo he conseguido, como deberia hacerlo?
podriais decirme como hacerlo, estoy muy perdido.
He llegado a hacer esto:


<html>
<head>
<script>
function inner(){
var htmldetexto = document.getElementById('texto').innerHTML;
}
document.getElementById("texto2");
document.getElementById("texto3");
</script>
</head>
<body>
<div id="texto">Este es el texto</div>
<div id="texto2"></div>
<div id="texto3"></div>
</body>
</html>