Hi,
function go() {
var txt = document.createTextNode("test test");
document.getElementById("lala").appendChild(txt);
}
Hab bei dcljs was gefunden, so gehte
function go() {
var txt = document.createTextNode("test" + String.fromCharCode(160) + "test");
document.getElementById("lala").appendChild(txt);
}
Gruesse Joachim