Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/10/2010, 14:21
sysmadryn
 
Fecha de Ingreso: septiembre-2004
Ubicación: La Plata Argentina
Mensajes: 128
Antigüedad: 20 años, 5 meses
Puntos: 9
Respuesta: Boton que copia texto

Hola.

Te sirve esto ?

Código HTML:
Ver original
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2.  
  3. <title>ejemplo</title>
  4. </head>
  5. <button onclick="document.getElementById('div01').innerHTML='hola Manola !'">click para copiar texto !</button>
  6. <br />
  7. <DIV id="div01"></DIV>
  8.  
  9. </body>
  10. </html>