Ciao a tutti,
come faccio a rendere il codice qui sotto compatibile con tutti i browser? (con Friefox non funziona...)
codice:
function divH(){
	var hsx = document.getElementById('colonnasx').offsetHeight;	
	var hdx = document.getElementById('colonnadx').offsetHeight;
	
	var valore_massimo = Math.max(hsx,hdx);
	
	document.getElementById('colonnasx').style.height = valore_massimo+10;
	document.getElementById('colonnadx').style.height = valore_massimo+10;
}
Grazie in anticipo. ^_^