centrar un por-up en la pantalla
2 seguidores
Este....me gustaría centrar el navegador (un pop-up) en la pantalla
Algún alma caritativa me podría indicar como se hace
Gracias
NG
Este....me gustaría centrar el navegador (un pop-up) en la pantalla
Algún alma caritativa me podría indicar como se hace
Gracias
NG
Seguro que tienes mucho que decir, te estamos esperando.
cbp
de ná, hombre :D
ng
Musssssschasssss gracias conejo ;)
NG
cbp
<code>
function abrePopUp () {
var ancho_ventana = 600;
var alto_ventana = 450;
var window_left = (screen.width - ancho_ventana - 12) / 2;
var window_top = (screen.height - alto_ventana - 57) / 2;
nombreVentana = window.open("noseque.html", "ventana", "width=" + ancho_ventana + ",height=" + alto_ventana + ",top=" + window_top + ",screenY=" + window_top + ",left=" + window_left + ",screenX=" + window_left + "");
}</code>
en ancho_ventana y alto_ventana le pones el tamaño que quieres que tenga el popup.