Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/02/2010, 04:03
quimfv
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Sabadell
Mensajes: 4.897
Antigüedad: 16 años, 2 meses
Puntos: 574
Respuesta: De un FORM a un DIV

Código HTML:
Ver original
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <title>Documento sin t&iacute;tulo</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  4. <script language="JavaScript" type="text/JavaScript">
  5. function copia(obj){
  6. document.getElementById("visor").innerHTML=obj.value;
  7. }
  8. </head>
  9. <input name="texto" type="text" id="texto" onKeyUp="copia(this)">
  10. <div id="visor">&nbsp;</div>
  11. </body>
  12. </html>

No se si te gustará....

Quim