HTML blink title java script

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-->
  • Release Date - 16-06-2004
  • Get free version without ©copyright link for just $10/-
  • For customization of this script or any script development, mail to support@hscripts.com

Usage

  • Copy the code in to your page.
  • Change the blinking message to what ever you want change the line
  •  var msg  = "Your message here --- hscripts.com";
    example: var msg = "....... mysitename.com ......";
  • The blink speed can be altered by changing the variable speed.

License

Related Scripts

Free Javascript Scripts


Ask Questions

Ask Question