»
EnglishFrenchVietnamese

Print - Flashing text in status bar - JavaScriptBank.com

Full version: jsB@nk » Status » Status » Flashing text in status bar
URL: https://www.javascriptbank.com/flashing-text-in-status-bar.html

Flashing text in status bar © JavaScriptBank.comThe effect displays a flashing message in status bar.

Full version: jsB@nk » Status » Status » Flashing text in status bar
URL: https://www.javascriptbank.com/flashing-text-in-status-bar.html



JavaScript
<script language="JavaScript"><!--/* MjM'S JAVA CODENAME = FLASH   This JavaScript Code was written by MjM for Hyperchat UK   I am not responsible for any damage caused by my code.   This code can be modified as long as the Author's Name is still attached.   Email : MjM@hyperchat.co.uk   © Copyright 1996*/var yourwords = "JavaScriptBank.com - Bank of over 2000+ free JavaScripts";var speed = 150;var control = 1;function flash(){  if (control == 1)    {      window.status=yourwords;      control=0;    }    else    {      window.status="";      control=1;    }  setTimeout("flash();",speed);}// --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="flash();"><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->