![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
09/09/2004, 08:26
|
![Avatar de Yusta](http://static.forosdelweb.com/customavatars/avatar9919_1.gif) | | | Fecha de Ingreso: septiembre-2001 Ubicación: Madrid
Mensajes: 158
Antigüedad: 23 años, 5 meses Puntos: 0 | |
ok, ya no hay problema
pues en la pop up pon esto
entre <head> y </head>
<script>
function redirecciona()
{
window.opener.location.href ="paginadRedireccion.html";
var ventana = window.self;
ventana.opener = window.self;
ventana.close();
}
</script>
y en el onclick del boton llamas a redirecciona()
de la siguiente forma:
<INPUT type="button" value="Button" onClick="redirecciona();">
A ver si con esto te vale
Suerte |