hoi
Also ich hab das Problemm das das Folgende Script nicht mit [coderwiki]Informationen/Internet-Explorer[/coderwiki] funktionirt
was kann man da machen ??
Alles anzeigen
Also ich hab das Problemm das das Folgende Script nicht mit [coderwiki]Informationen/Internet-Explorer[/coderwiki] funktionirt

Quellcode
- var xmlHttp = false;
- try {
- xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
- } catch(e) {
- try {
- xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
- } catch(e) {
- xmlHttp = false;
- }
- }
- if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
- xmlHttp = new XMLHttpRequest();
- }
- loadData();
- setInterval("loadData()",500);
- function loadData()
- {
- if (xmlHttp) {
- xmlHttp.open('GET', 'getdata.php', true);
- xmlHttp.onreadystatechange = function () {
- if (xmlHttp.readyState == 4) {
- document.getElementById("content").innerHTML = xmlHttp.responseText;
- }
- };
- xmlHttp.send(null);
- }
- }