<script language="Javascript">
var tit = document.title;
var c = 0;
function writetitle() {
if (document.all || document.getElementById) {
document.title = tit.substring(0,c);
if (c==tit.length) {
c = 0;
setTimeout("writetitle()", 400) //
}
else {
c++;
setTimeout("writetitle()", 200) //
}
}
}
writetitle()
</script>
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.