This javascript function will help you to show a blinking message in the title. Title bar is the topmost portion of the browser. Simple html script that will give a special title effect.
Features
Title Bar script function to shows blinking (blin
messages in title bar.
Should work in all browsers including internet explorer, firefox, opera.
Just copy the code in to your page and use it.
Preview
Title of this page
Downloads
<!-- Script by hscripts.com --> <!-- more scripts @ https://www.hscripts.com --><script type="text/javascript"> function titlebar(val) { var msg = "Your message here --- hscripts.com"; var speed = 500; var pos = val;var msg1 = "****** "+msg+" ******"; var msg2 = "------- "+msg+" -------";if(pos == 0) { masg = msg1; pos = 1; } else if(pos == 1) { masg = msg2; pos = 0; } document.title = masg; timer = window.setTimeout("titlebar("+pos+")",speed); } titlebar(0); </script> <!--Script by hscripts.com-->