function test(id) { if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } else { if (window.ActiveXObject) { try { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { } } } if (xmlHttp) { var opt="?co=lista&id="+id; xmlHttp.onreadystatechange = lista; xmlHttp.open("GET", "lista.php" + opt, true); xmlHttp.send(null); } else { document.getElementById("alert").innerHTML = "Sorry, but I couldn't create an XMLHttpRequest"; } } function lista() { if (xmlHttp.readyState == 4) { if (xmlHttp.status == 200) { alert(xmlHttp.responseXML) if (xmlHttp.responseXML) { document.getElementById("lista").innerHTML = xmlHttp.responseText;; } } } }
we wszystkich przeglądarkach wkleja text do diva lista tylko w firefox xmlHttp.responseXML ma wartość null??