ciao a tutti...
questo è il mio codice:
codice:
var rapportino = xml.getElementsByTagName("rapportino");
var tabella  = document.getElementById('int');
//SE NON CI SONO RAPPORTINI
if(rapportino.length == 0) {
	var new_tr  =  document.createElement('tr');
	var new_td  =  document.createElement('td'); 
	new_td.setAttribute('colspan',5);
	new_td.className = 'rowRap';
	new_td.innerHTML = "NESSUN RAPPORTINO ESISTENTE PER I CRITERI SELEZIONATI";
	tabella.appendChild(new_tr); 
	new_tr.appendChild(new_td);
}
con firefox funziona correttamente... con explorer no(NON SI VEDE NULLA)... PERCHE???????????????????

VI PREGO AIUTATEMIIIIIIIIIIIIIIIIII