grazie per la risposta..
ho modificato il mio codice così, ed in effetti adesso ho risolto i problemi di explorer
codice:
var x,y;
if (self.innerHeight) // all except Explorer
{
x = self.innerWidth;
y = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)
// Explorer 6 Strict Mode
{
x = document.documentElement.clientWidth;
y = document.documentElement.clientHeight;
}
else if (document.body) // other Explorers
{
x = document.body.clientWidth;
y = document.body.clientHeight;
}
document.write('<style type="text/css"> div#right {height:'+y+'px;} </style>');
quello che non capisco è come inserire il codice che mi hai dato tu e come (e quando) richiamarlo.. all'onresize del body?
scusa ma sono un novellino di js..