bdl20042000
Messages postés63Date d'inscriptionmercredi 18 août 2004StatutMembreDernière intervention19 mai 2009 11 déc. 2006 à 15:54
sur le lien http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=976295&SiteID=1 il expose une solution.
voici comment je l'utilise (cela fonctionne avec IE6 et IE7 mais pas sous Firefox) :
dans la page principale :
function FermerfenetreIE() {
var obj_window = window.open('close.html', '_self');
obj_window.opener = window;
obj_window.focus();
opener=self;
self.close();
}
plus appel de cette fonction sur un click du bouton
et dans close.html:
<html>
<script language="JavaScript">opener=self;self.close();</script>
</html>
lesam25
Messages postés1Date d'inscriptionjeudi 17 juillet 2003StatutMembreDernière intervention22 décembre 2006 22 déc. 2006 à 14:46
Autre exemple qui marche sous ie6 et ie7 mais pas sous Firefox
Principe : on appel un fichier index.php qui appel sur lui meme index1.php puis index1.php appel enfin index2.php (avec la taille voulu les barres d'outils, d'adresse ....)