Sytse meinte:
Please stop top-posting. Thanks.
Easy: Don't use document.write( ) after loading a page.
Why do you write at all? Apend anchor elements to the body in your
create()-function.
Something like
var a = document.create Element("a");
a.appendChild(d ocument.createT extNode("test") ;
a.href = "...";
a.onclick = test;
document.body.a ppendChild(a);
Gregor
--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
Please stop top-posting. Thanks.
OK thanks.
Is there a trick to overcome this issue?
Is there a trick to overcome this issue?
Why do you write at all? Apend anchor elements to the body in your
create()-function.
Something like
var a = document.create Element("a");
a.appendChild(d ocument.createT extNode("test") ;
a.href = "...";
a.onclick = test;
document.body.a ppendChild(a);
Gregor
--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
Comment