![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
13/02/2003, 10:24
|
![Avatar de KarlanKas](http://static.forosdelweb.com/customavatars/avatar11549_2.gif) | Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años, 1 mes 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. |