@leclemenceau_vence
document.getElementById('btnConnexion').addEventListener('click', function() { // 1. Définir les dimensions de la pop-up const largeur = 900; const hauteur =850; // 2. Calculer la position pour centrer la fenêtre sur l'écran const gauche = (window.screen.width / 2) - (largeur / 2); const haut = (window.screen.height / 2) - (hauteur / 2); // 3. Configurer les options de la fenêtre (on masque le maximum d'éléments) const options = `width=${largeur},height=${hauteur},top=${haut},left=${gauche},` + `toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes`; // 4. Ouvrir l'URL du second site window.open('https:///web-commerceenligne.com/gest/connexion.php', 'EspaceConnexion', options); });