HTML status bar using java script

This javascript function will help you to show a text message in the status bar with rotating (dancing) effect.

Status bar is the bottom portion of the browser where you will see link information when you move the mouse over any link.

Features

  • Status bar script function to show text message with rotating (dancing) effect.
  • Should work in all browsers including internet explorer, firefox and opera.
  • Just copy the code in to your page and use it.

Preview

Status bar of this page

Downloads

<!--Script by hscripts.com-->
<!-- more scripts @ https://www.hscripts.com -->
<script type="text/javascript">
var as = 1;
var bs = 3; function statusbar() {
var msg = "dancing script - hscripts.com";
var msg1 = "\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\";
var msg2 = "||||||||||||||||||";
var msg3 = "//////////////////";
var msg4 = "------------------";
if(as > 4)
as = 1;
if(bs < 1)
bs = 4;
timer = window.setTimeout("statusbar()",100);
var sds = eval("msg"+as);
var sds2 = eval("msg"+bs);
var ss =sds+"
"+msg+"
"+sds2;
window.status = ss;
as = as+1;
bs = bs-1;
}
statusbar(100);
</script>
  • 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 javascript code into the <head> tag of your page.
  • Change the message to what ever you want change the line
  •  var msg  = "dancing script - hscripts.com";
    example: var msg = "... mysitename.com ...";

License

Related Scripts

Free Javascript Scripts


Ask Questions

Ask Question