Cita:
Iniciado por neptuno335 ¿No existe algo para acceder al valor de la caja de texto así como target.location.href=Nombre.value?
claro que existe
pero no sabia que no ocupabas php
aqui te dejo el ejemplo
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title
>Documento
sin título
</title
> </head>
<script language="javascript" type="text/javascript">
function valida(){
var url=document.getElementById("pag").value;
var tu_frame = document.getElementById("ventana");
tu_frame.src = "http://"+url;
}
</script>
<body>
<form id="form1" name="form1" method="post" >
direccion
<label>
<input type="text" name="pag" id="pag" />
</label>
<label>
<input type="button" name="button" id="button" value="Enviar" onclick="javascript:valida()" />
</label>
</form>
<br />
<iframe width="100%" height="500" name="ventana" id="ventana" src=""></iframe>
</body>
</html>
Saludos