Ciao a tutti,
questo fantastico codice di br1, non va su Internet Explorer 6 sv1; è possibile fargli delle correzioni per farlo andare?
codice:
<script language="JavaScript" type="text/JavaScript">
function screenFull() {
// (c) br1 - 2001
if (document.all) {
// misuro lo schermo
sW=screen.width;
sH=screen.height;
// porto la finestra a 0,0 e misuro bordi
window.moveTo(0,0);
gL=window.screenLeft+5;
gT=window.screenTop+40;
// altre cose da eliminare...
gR=22; // scrollbar a destra
gB=49; // scrollbar sotto e status
// sorpresa!
window.moveTo(-gL,-gT);
window.resizeTo(sW+gL+gR,sH+gT+gB);
}
}
function minimize() {
top.moveTo(3000,0);
}
</script>
</head>
<body onload="screenFull()" onFocus="screenFull()" onblur="focus()" tabindex=5>
tigerJ.