Scrolling Words On Browsers

Here's a quick view, look at my Blog (top bar on browser), there are scrolling words right? Did you want your blog look like this? So, read my tip.


To make it : you just have to add this code before </head> the tag or put the code in HTML/JavaScript. Copy this code:-


<script type='text/javascript'>
var txt="Your blog name and little description about your site here";
var espera=200;
var refresco=null;
function rotulo_title()
{
document.title=txt;
txt=txt.substring(1,txt.length)+txt.charAt(0); refresco=setTimeout("rotulo_title()",espera);
}
rotulo_title();
</script>

Change the yellow colour with your own words.

No response to “Scrolling Words On Browsers”