Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/12/2002, 13:02
chivi
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 889
Antigüedad: 22 años, 3 meses
Puntos: 4
Se entiende y es muy facilito. Acá te lo muestro en un ejemplo:

<html>
<head>
<script>
function Formulario(form){
window.location = form.url.value + ".htm"}
</script>
</head>
<body>
<form name=form>
<input type=text name="url">
<input type=button value="Ir" onclick="Formulario(this.form)">
</form>
</body>
</html>

Saludos maja!