mam
Funkcje.js
function tocos() {
advAJAX.get({ url: "test1.php",
onLoading : function(obj) { document.getElementById("divg").innerHTML = "Loading..."; },
onSuccess : function(obj) { document.getElementById("divg").innerHTML = obj.responseText; }
});
advAJAX.get({ url: "test2.php",
onLoading : function(obj) { document.getElementById("divd").innerHTML = "Loading..."; },
onSuccess : function(obj) { document.getElementById("divd").innerHTML = obj.responseText; }
});
advAJAX.get({ url: "t1.html",
onLoading : function(obj) { document.getElementById("con").innerHTML = "Loading..."; },
onSuccess : function(obj) { document.getElementById("con").innerHTML = obj.responseText; }
});
}
plik index.html
<meta http-equiv="Content-type" content="text/html; charset=ISO-8859-2" > <link rel="stylesheet" href="styl.css" type="text/css" />
test
test2
Nie bardzo kumam czego pod FF działa bez zarzutu a w IE nic nie robi. Niestety większość użytkowników aplikacji którą tworze będzie używać IE i problem bardzo mnie pali.