Full version: jsB@nk » Status » Status » Percentage Progress Bar script
URL: https://www.javascriptbank.com/percentage-progress-bar-script.html
Instead of displaying "Open page..." in status bar when opening any web page, you can use this script to display ratio of loaded data. It's more effetive and cool. This script works in Internet Explorer, Opera, Netscape and Mozilla.
Full version: jsB@nk » Status » Status » Percentage Progress Bar script
URL: https://www.javascriptbank.com/percentage-progress-bar-script.html
<SCRIPT language=javascript>/******************************************************************************************************************** xxxxxxxxxxxxxxx xxxxxxxxxxx xxxx xxxxxxxxxxxxxxx xxxxxxxxxxxxx xxxx xxxxxxxxxxxxxxx xxxxxxxxxxxxx xxxx xxxxx xxxxxxxxxxxx xxxx xxxxx xxxxx xxxx xxxxx xxxxxxxxxxxx xxxx xxxxx xxxxxxxxxxxxx xxxxxxxxxxxwww.JavaScriptBank.com xxxxx xxxxxxxxxxxx xxxxxxxxxxxxx xxxxx xxxxx xxxx xxxx xxx xxxxx xxxxxxxxxxxx xxxx xxxx xxx xxxxxx xxxxxxxxxxxxx xxxx xxxx xxxxxxxxxx xxxxxxxxxxxxx xxxxxxxxxxxxx xxxxxxxx xxxxxxxxxxx xxxxxxxxxxx Percentage Progress Bar script Author: Thái Cao PhongWebsite: www.JavaScriptBank.comPlease keep these comments above to contact author when you use this script. Thank you very much.Vietnamese: Xin ban hay giu lai nhung thong tin tren de nguoi khac co the lien he voi tac gia neu ban co su dung doan ma nay. Cam on ban rat nhieu.**********************************************************************************************************************/var percent = 70, timePeriod = 100;function getBar(){var retBar = '';for(i = 0; i < percent; i++){retBar += "|";}return retBar;}function progressBar(){ if(percent < 100) { percent = percent + 1 window.status = "Loading : " + percent + "%" + " " + getBar(); setTimeout ("progressBar()", timePeriod); } else { window.status = "[www.JavaScriptBank.com] - Thousands of free JavaScript."; document.body.style.display = ""; }}progressBar();</SCRIPT><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->