Hi,
var i = 0;
function anf()
{
if(i < URL.length)
{
parent.location.inhalt.href = URL[i];
++i;
window.setTimeout("anf()", 5000);
}
}
Sollte nicht das
window.setTimeout("anf()", 5000);
ausserhalb der Klammern stehen? Wie wird sonst die Funktion aufgerufen?
Greets Tom1tk