[Beschreibung]
Titelleistenscroller
[Kompatibilität]
[Code]
<script language="JavaScript"> <!-- var Message="Nightfire your home for free scripts?"; var place=1; function rollIn() { //change Here //window.status or document.title document.title=Message.substring(0, place); if (place >= Message.length) { place=1; window.setTimeout("dragOut()",300); } else { place++; window.setTimeout("rollIn()",50); } } function dragOut() { //Change Here //window.status or document.title document.title=Message.substring(place, Message.length); if (place >= Message.length) { place=1; window.setTimeout("rollIn()", 100); } else { place++; window.setTimeout("dragOut()", 50); } } //--> </script>
onLoad="rollIn()"
??