bon j'ai peut être exagéré... (g pas dis que c pas bon non plus, je parlais à toto21 )
c pas la première fois que le sujet sors, je me suis fais taper sur les doigts pcq je proposais une solution un peu plus complète mais pas encore universelle :
function show()
{
if (document.getElementById) { // IE6 or NS6
document.getElementById('mondiv'.style.visibility = "visible";
return;
}
if (document.all) { //IE
document.all["mondiv"].style.visibility='visible';
return;
}
if (document.layers) { //IE <6
document.layer["mondiv"].visibility='show';
return;
}
}
function hide()
{
if (document.getElementById) { // IE6 or NS6
document.getElementById('mondiv'.style.visibility = "hidden";
return;
}
if (document.all) { //IE
document.all["mondiv"].style.visibility='hidden';
return;
}
if (document.layers) { //NS
document.layer["mondiv"].visibility='hide';
return;
}
}
[jfdsdjhfuetppo]--Message édité par ethernal le 11-05-2002 à 02:31:40--[/jfdsdjhfuetppo]