»
EnglishFrenchVietnamese

Print - Status Bar Message with Pointer - JavaScriptBank.com

Full version: jsB@nk » Status » Status » Status Bar Message with Pointer
URL: https://www.javascriptbank.com/status-bar-message-with-pointer.html

Status Bar Message with Pointer © JavaScriptBank.comThe script will display a sentence in status bar which look like it's being typed with '|' character.

Full version: jsB@nk » Status » Status » Status Bar Message with Pointer
URL: https://www.javascriptbank.com/status-bar-message-with-pointer.html



JavaScript
<script language="JavaScript"><!-- var Message="JavaScriptBank.com - Bank of over 2000+ free JavaScripts";var place=1;function rollIn() {//change Here//window.status or document.titledocument.title=Message.substring(0, place);if (place >= Message.length) {place=1;window.setTimeout("dragOut()",300); } else {place++;window.setTimeout("rollIn()",50);    } }function dragOut() {//Change Here//window.status or document.titledocument.title=Message.substring(place, Message.length);if (place >= Message.length) {place=1;window.setTimeout("rollIn()", 100);} else {place++;window.setTimeout("dragOut()", 50);   }}//--></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


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