T
Thomas Jansen
Hi,
IE reports an unknown error with this code.
But with Firfox and Opera there is no problem running the code.
Any hint why?
// response = var sMessage = "Hello, ";| var sName = "Your Name";|
callback(sMessage + sName);
var response = decodeURIComponent(http.responseText);
alert(response);
var olist = response.split('|');
var s = document.createElement("script");
s.type = "text/javascript";
s.innerHTML = (olist[0]);
s.innerHTML += (olist[1]);
s.innerHTML += (olist[2]);
document.body.appendChild(s);
~TJ
IE reports an unknown error with this code.
But with Firfox and Opera there is no problem running the code.
Any hint why?
// response = var sMessage = "Hello, ";| var sName = "Your Name";|
callback(sMessage + sName);
var response = decodeURIComponent(http.responseText);
alert(response);
var olist = response.split('|');
var s = document.createElement("script");
s.type = "text/javascript";
s.innerHTML = (olist[0]);
s.innerHTML += (olist[1]);
s.innerHTML += (olist[2]);
document.body.appendChild(s);
~TJ