I've had a lot of trouble with javascript in IE, but I can't get through this one. I doesn't show anytyhing in IE but it works on Firefox. It throws me an error that 'innerHTML' is NULL or not an object. Here is the javascript function:
function culege_date() // se trimit hotelurile selectate pentru a prelua preturile
{
var selectii = "";
var a = document.getElementsByName("id_booking.com");
var b = document.getElementsByName("radio3");
var data = document.getElementById("data"); // se preia data din select
for(var i = 0; i < b.length; i++)
{
if(b[i].checked==true)
selectii += a[i].innerHTML + "_"; // se preia id-ul hotelurilor selectate
}
if (window.XMLHttpRequest) // se trimite request-ul
xmlhttp=new XMLHttpRequest();
else
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)// readystate==4 pagina e incarcata complet; status=200 OK (404 not found)
document.getElementById("rezultate").innerHTML=xmlhttp.responseText; // returneaza raspunsul ca si string
}
xmlhttp.open("GET","load.php?select="+selectii+"&data="+data.value,true);//se face linkul si se scot datele
xmlhttp.send();
}
rezultate? If it is a<select>element you might be hitting this bug: Internet Explorer Fails to Set the innerHTML Property of the Select Object. – Xavi López Oct 24 '11 at 10:21innerHTMLon is not null: doaandbhave the same.length? Add in aconsole.log()oralert()before theforloop to find out. Isdocument.getElementById("rezultate")returning non-null? Are you getting the error on the first use ofinnerHTMLin theforloop, or the other use in theonreadstatechangefunction? Or both? – nnnnnn Oct 24 '11 at 10:25rezultateis a<div>so it should be ok I think... @nnnnn yesaandbhave the same length.. I'll try thealert()right now – flaviu Oct 24 '11 at 10:33.innerHTML(it's the devil!) – Raynos Oct 24 '11 at 10:34.textContentinstead. – Raynos Oct 24 '11 at 11:27