Cita:
Iniciado por caricatos Hola Alberto y Javi:
Para centrar un popup hay que hacer cálculos y poner más parámetros en las opciones...
function abrir(enlace, anchura, altura) {
posX = parseInt(screen.width - anchura) / 2;
posY = parseInt(screen.height - altura) / 2;
window.open(enlace, "", "width=" + anchura + ",height=" + altura + ",top=" + posY + ",left=" + posX);
}
Y la llamada sería:
<body onload="abrir('pagina.html',100,125)" >
Saludos
En realidad no entendí bien, donde lo coloco ese código
function abrir(enlace, anchura, altura) {
posX = parseInt(screen.width - anchura) / 2;
posY = parseInt(screen.height - altura) / 2;
window.open(enlace, "", "width=" + anchura + ",height=" + altura + ",top=" + posY + ",left=" + posX);
}
eso!