Jürgen123456789: Script nochmal laden mit Verweis ohne alles weiß

Beitrag lesen

Привет Jürgen.

Wie kann ich das Script nochmal laden mit einem Verweis ohne das alles weiß wird?

Indem du statt document.write das style-Objekt nutzt.

Дружба!
Siechfred

OK
Leider hilft mir das nicht weiter. ( Kann an mir liegen )
Können Sie mir das nicht in das Script schonmal einbauen,
da weiß ich auch was Sie damit genau gemeint haben?
Ich brauche Stunden für sowas.

MGF

<script LANGUAGE="JavaScript">
<!-- Begin
function ABC(xa,ya,xe,ye)
{
xs=xe-xa
ys=ye-ya
xss=Math.abs(xs)
yss=Math.abs(ys)
if (xss>=yss) {; s=xs; }
if (xss<yss) {; s=ys; }
s=Math.abs(s)
xf=xs/s
yf=ys/s
for (i = 0; i <= s; ++ i) {
x=xa+(i*xf)
y=ya+(i*yf)
if (document.layers) {
document.write("<layer top="+y+" left="+x+"><img SRC='rot.GIF' NOSAVE height=1 width=1></layer>")
}
if (document.all) {
document.write("<div style='position:absolute;top:"+y+"px;left:"+x+"px'><img SRC='rot.GIF' NOSAVE height=1 width=1></div>")
}
}
}
ABC(200,90,300,90)
ABC(200,90,300,9)
//  End -->
</script>
<a href="javascript:ABC()">Verweis</a>