Bouton ouvrir et fermer

Fermé
luks - 28 juil. 2009 à 16:20
Thamior Messages postés 264 Date d'inscription lundi 11 février 2008 Statut Membre Dernière intervention 18 mars 2014 - 28 juil. 2009 à 16:28
Bonjour,

je cherche a créer un bouton qui :
1. ouvre une popup (ça je sas faire)
2. ferme la fenetre active ...
A voir également:

1 réponse

Thamior Messages postés 264 Date d'inscription lundi 11 février 2008 Statut Membre Dernière intervention 18 mars 2014 47
28 juil. 2009 à 16:28
Voici un exemple :

Page.html

<html>
<head>
<title>Test</title>
<script>
var newWin;
function openWin() {
this.newWin = window.open("wait.html","fenetre2","toolbar=yes,location=yes,menubar=no, height=402, width=359");
}

function closeWin() {
this.newWin.close();
}
</script>
</head>

<body>
<input type="button" onClick="javascript:openWin();" value="ouverture popup" />
<input type="button" onClick="javascript:closeWin();" value="fermeture popup" />
</html>

wait.html

<html>

<head />

<body>
Changement en cours...
</body>

</html>
0