English
<!-- http://bbs.downcodes.com/ --> <!--To achieve this effect, two steps are required. The first step is to add the following code to the <head> area --> <SCRIPT LANGUAGE= "JavaScript"> <!-- Begin var msg = "Welcome To The www.downcodes.com"; var chars = msg.length + 1; var updateStatus = ""; var i = 0; function statusMessage() { if ( i < chars) setTimeout("nextLetter()", 300); } function nextLetter() { updateStatus = msg.substring(0,i) + '_'; window.status = updateStatus; i++; statusMessage(); } / / End --> </script> <!--Step 2: Add "onLoad="statusMessage()"" to the <body> tag. For example: --> <body onLoad="statusMessage()">