[Beschreibung]
Täglich wechselnder MP3 Titel
[Kompatibilität]
[Code]
<!-- Original: Gary Perry (gary@garyperry.com) --> <!-- Change the src="titelx.mp3" to the pathname and filename for the song you wish to play --> <!-- Change each document.write line's src= portion for the different songs you want --> <script language="JavaScript"> s_date = new Date(); if(s_date.getDay() == 1){ document.write('<embed width=0 height=0 hidden="true" autostart="true" volume="5" loop="false" src="titel1.mp3">'); } if(s_date.getDay() == 2){ document.write('<embed width=0 height=0 hidden="true" autostart="true" volume="5" loop="false" src="titel2.mp3">'); } if(s_date.getDay() == 3){ document.write('<embed width=0 height=0 hidden="true" autostart="true" volume="5" loop="false" src="titel3.mp3">'); } if(s_date.getDay() == 4){ document.write('<embed width=0 height=0 hidden="true" autostart="true" volume="5" loop="false" src="titel4.mp3">'); } if(s_date.getDay() == 5){ document.write('<embed width=0 height=0 hidden="true" autostart="true" volume="5" loop="false" src="titel5.mp3">'); } if(s_date.getDay() == 6){ document.write('<embed width=0 height=0 hidden="true" autostart="true" volume="5" loop="false" src="titel6.mp3">'); } if(s_date.getDay() == 0){ document.write('<embed width=0 height=0 hidden="true" autostart="true" volume="5" loop="false" src="titel7.mp3">'); } </script>
Gary Perry
Kopieren Sie bitte den Code