»
EnglishFrenchVietnamese

Print - Uppercase-lowercase in status bar - JavaScriptBank.com

Full version: jsB@nk » Status » Status » Uppercase-lowercase in status bar
URL: https://www.javascriptbank.com/uppercase-lowercase-in-status-bar.html

Uppercase-lowercase in status bar © JavaScriptBank.comThe effect will change sentence in status bar from upper/lower to lower/upper every character constantly.

Full version: jsB@nk » Status » Status » Uppercase-lowercase in status bar
URL: https://www.javascriptbank.com/uppercase-lowercase-in-status-bar.html



JavaScript
<SCRIPT>var text1="Welcome to JavaScriptBank.com"comeback=0cometo=0function dis(){window.status=text1.substring(0,cometo)if(comeback==1){cometo--;if(cometo==0){comeback=0}} else {cometo++;if(cometo==text1.length){comeback=1}}window.status=text1.substring(0,cometo)+"|"if(cometo==text1.length){window.setTimeout("dis()",500);} else {window.setTimeout("dis()",50);}}dis()</SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->