<--! Paste
This code in to Head Part of your page-->
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
ripplespeed = 400;
string = "Welcome To chooseindia's Javascript / DHTML Page. ";
function rippleText() {
box = document.scrollform.box; // box to display text in
arg0 = rippleText.arguments[0];
i = (arg0) ? ( (arg0 == string.length) ? 0 : arg0) : 0;
box.value = string.substring(0,i)
+ (string.substring(i,i+1).toUpperCase())
+ string.substring(i+1, string.length);
scrollcmd = "rippleText("+(i+1)+")";
timer = window.setTimeout(scrollcmd, ripplespeed);
}
// End -->
</script>
<--! This code will go with Body tage of
your page-->
< BODY OnLoad="rippleText()">
<--! Paste This code in to Body Part of
your page-->
<center>
<form name=scrollform>
<input type=text name=box size=50>
</form>
</center> |