I can not understand why I get the error I mention in the title "index.php: 111 Uncaught ReferenceError: slider1 is not defined at onload " If someone very kind could help me,
function uhrzeit(anzeige) {
Heute = new Date();
Stunde = Heute.getHours();
Minute = Heute.getMinutes();
Sekunde = Heute.getSeconds();
document.getElementById("uhr").innerHTML=Stunde+":"+((Minute<=9)?"0"+Minute:Minute)+":"+((Sekunde<=9)?"0"+Sekunde:Sekunde)+" Uhr";
}
function bild1(){
document.getElementById("bild").style.backgroundImage = "url('images/slider/bild1.png')";
document.getElementById("bild1").style.backgroundImage = "url('images/slider/punkton.png')";
document.getElementById("bild2").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild3").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild4").style.backgroundImage = "url('images/slider/punkt.png')";
}
function bild2(){
document.getElementById("bild").style.backgroundImage = "url('images/slider/bild2.png')";
document.getElementById("bild2").style.backgroundImage = "url('images/slider/punkton.png')";
document.getElementById("bild1").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild3").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild4").style.backgroundImage = "url('images/slider/punkt.png')"
}
function bild3(){
document.getElementById("bild").style.backgroundImage = "url('images/slider/bild3.png')";
document.getElementById("bild3").style.backgroundImage = "url('images/slider/punkton.png')";
document.getElementById("bild2").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild1").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild4").style.backgroundImage = "url('images/slider/punkt.png')"
}
function bild4(){
document.getElementById("bild").style.backgroundImage = "url('images/slider/bild4.png')";
document.getElementById("bild4").style.backgroundImage = "url('images/slider/punkton.png')";
document.getElementById("bild2").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild3").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild1").style.backgroundImage = "url('images/slider/punkt.png')"
}
position=1;
setTimeout(function slider1(){
if(position == 1){
position = 2;
document.getElementById("bild").style.backgroundImage = "url('images/slider/bild1.png')";
document.getElementById("bild1").style.backgroundImage = "url('images/slider/punkton.png')";
document.getElementById("bild2").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild3").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild4").style.backgroundImage = "url('images/slider/punkt.png')";
window.setTimeout(slider1, 5000);
}
else{
if(position == 2){
position = 3;
document.getElementById("bild").style.backgroundImage = "url('images/slider/bild2.png')";
document.getElementById("bild2").style.backgroundImage = "url('images/slider/punkton.png')";
document.getElementById("bild1").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild3").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild4").style.backgroundImage = "url('images/slider/punkt.png')"
window.setTimeout(slider1, 5000);
}
else{
if(position == 3){
position = 4;
document.getElementById("bild").style.backgroundImage = "url('images/slider/bild3.png')";
document.getElementById("bild3").style.backgroundImage = "url('images/slider/punkton.png')";
document.getElementById("bild2").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild1").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild4").style.backgroundImage = "url('images/slider/punkt.png')"
window.setTimeout(slider1, 5000);
}
else{
if(position == 4){
position = 1;
document.getElementById("bild").style.backgroundImage = "url('images/slider/bild4.png')";
document.getElementById("bild4").style.backgroundImage = "url('images/slider/punkton.png')";
document.getElementById("bild2").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild3").style.backgroundImage = "url('images/slider/punkt.png')";
document.getElementById("bild1").style.backgroundImage = "url('images/slider/punkt.png')"
window.setTimeout(slider1, 5000);
}
}
}
}
},5000);
<body Onload="uhrzeit('jetzt'); setInterval('uhrzeit()', 1000); bild1(); slider1()">