Ver Mensaje Individual
  #5 (permalink)  
Antiguo 07/12/2002, 12:09
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Hola, Keysher. Prueba esto a ver si te vale:
Código PHP:
<html>
<
head>
<
title>Untitled Document</title>
<
script language="JavaScript">
function 
cambiaTexto() {
    
texto=textfield.value;
    
texto=texto.toUpperCase();
    
document.getElementById('Layer1').innerHTML=texto;
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div id="Layer1" style="position:absolute; width:200px; height:115px; z-index:1; left: 405px; top: 56px"></div>
<textarea name="textfield" onKeyUp="cambiaTexto()"></textarea>
</body>
</html> 
Saludos,