Question : hide a Div

i have this code that work fine in firefox but not in explorer,

 document.getElementById("Dives").style.visibility = 'hidden';
 document.getElementById("Dives").style.height = '0px';

Answer : hide a Div

To show it back :

1:
document.getElementById("Dives").style.display = 'block';
Random Solutions  
 
programming4us programming4us