Posted in

Popup con efecto revisible

Sin Scroll:

ventanas=new Array();

function abre(destino,name,ancho,alto){

anchura="";

altitud="";

anchura+="width=";

anchura+=ancho;

altitud+="height=";

altitud+=alto;

tamany="";

tamany=anchura;

tamany+=",";

tamany+=altitud;

            if (ventanas[name]!=undefined) ventanas[name].close();{

ventanas[name]=window.open(destino,name,tamany);

}
}

Con Scroll:

ventanas=new Array();

function abre(destino,name,ancho,alto){

anchura="";

altitud="";

anchura+="width=";

anchura+=ancho;

altitud+="height=";

altitud+=alto;

tamany="";

tamany=anchura;

tamany+=",";

tamany+=altitud;

tamany+=",scrollbars=yes";

            if (ventanas[name]!=undefined) ventanas[name].close();{

ventanas[name]=window.open(destino,name,tamany);

}
}

Deixa un comentari

L'adreça electrònica no es publicarà. Els camps necessaris estan marcats amb *


The reCAPTCHA verification period has expired. Please reload the page.