![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
22/07/2008, 00:50
|
|
Respuesta: window.open no funciona dice permiso denegADO En padre.html:
Código:
<SCRIPT>
var sWinGred;
function abreVentana(){
var mipage ="http://c-gmdsa-1145/siggaudi/hija.htm";
var nombre = "Gred";
winprops = "height="+400+",width="+650+",scrollbars=yes, resizable"
sWinGred = window.open(mipage, nombre, winprops);
}
function enviaDatoA_HIja(){
var datoGaS;
datoGaS= document.formG.dato1.value;
sWinGred.f_EnviaGAS(datoGaS);
alert(datoGaS);
}
</SCRIPT>
|