Christian
Bonjour,
Je me rend compte que les méthodes moveTo et resizeTo en javascript ne fonctionent pas sous IE7,
comme indiqué à l'adresse
<http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/dhtml_node_entry.asp>
Es-ce normal ?
Exemple pour une fonction plein écran :
<script language="Javascript">
<!--
function FullScreen (){
largIE=screen.width;
hautIE=screen.height;
window.moveTo(0,0); // Ne marche pas !
window.resizeTo(largIE,hautIE); // Ne marche pas !
window.alert("LARGEUR = " + largIE + " \n HAUTEUR = " + hautIE); // Marche!
}
// -->
</script>
Merci de m'éclairer sur la méthode à utiliser avec IE7, si quelqu'un la connait...

Christian