hello
i have no problem with this code:
it ouputs everything and also with the style.
but if i do:
it wont ouput the script source wich is a rss feed source, how can i append to the html body the script tag?
i have no problem with this code:
Code:
var z=new Array()
z[0]="<span style ='color:red;'>yeah</span>"
document.getElementById("aa").innerHTML = z[0];
but if i do:
Code:
var z=new Array()
z[0]="<script src='http:\/\/feed2js.org\/\/feed2js.php?src=http%3A%2F%2Fwww.lemonde.fr%2Frss%2Fune.xml&num=2&desc=100>1&date=y'><\/script>"
document.getElementById("aa").innerHTML = z[0]
Comment