Javascript / Browser / Scrolling Title
Makes your title (in the title bar) name scroll in place. Don't add title tags in your html fo rthis to work. jsut copy said script and put between the head tags.
Browser: IE5+, NS6+, Opera
Browser: IE5+, NS6+, Opera
General Details
Snippet uploaded by: snippet
Email : webmaster@snippetlibrary.com
Snippet By: unknown
<!---Head--->
<script language="JavaScript"><!--
var txt="Some title that you want for you page";
var espera=200;
var refresco=null;
function scroll_title() {
document.title=txt;
txt=txt.substring(1,txt.length)+txt.charAt(0);
refresco=setTimeout("scroll_title()",espera);}
scroll_title();
// -->
</script>
<!---Body--->
none
No Reviews to show
