Ver Mensaje Individual
  #9 (permalink)  
Antiguo 13/02/2003, 10:24
Avatar de KarlanKas
KarlanKas
Moderador extraterrestre
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 5 meses
Puntos: 61
No me ha quedado muy claro pero a ver si es esto:

---------------------- ventana1.html---------------------------

<html>
<head>
<title>Untitled</title>
<script>
function abrete(valor){
ventanita=window.open("ventanita.html");
ventanita.document.forms[0].elements[0].value=valor;
}

</script>

</head>

<body>
<form action="" method="post">
<input type="text" name="nombre" onBlur="abrete(this.value)">

</form>


</body>
</html>


------------------------------------------------------------

----------------------- ventanita.html -----------------------------

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
<title>Untitled</title>
</head>

<body>
<form action="" name="formu2" id="formu2"><input type="text" name="valor"></form>


</body>
</html>

-----------------------------------------------------------

¿Es esto?
__________________
Cómo escribir

No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia.