.alias.
04-01-2006, 02:20 PM
OK this creation of mine is pointless but still you might have some use for it,
i call it the Inverted Text
<script type="text/javascript">
/********************************
*Created by .Alias.
*(c) .Alias.
*This must not be removed
********************************/
/////EDIT THIS TEXT AS IT IS THE TEXT THAT WILL BE DISPLAYED/////
txt = "Hello, World!";
/////EDIT THIS TEXT AS IT IS THE TEXT THAT WILL BE DISPLAYED/////
/////DO NOT EDIT PAST HERE/////
x = txt.length;
i = 0;
text = new Array();
string = "";
while (x >= i)
{
text[i] = txt.charAt(x);
string = string + text[i];
x--;
}
document.write(string);
</script>
i call it the Inverted Text
<script type="text/javascript">
/********************************
*Created by .Alias.
*(c) .Alias.
*This must not be removed
********************************/
/////EDIT THIS TEXT AS IT IS THE TEXT THAT WILL BE DISPLAYED/////
txt = "Hello, World!";
/////EDIT THIS TEXT AS IT IS THE TEXT THAT WILL BE DISPLAYED/////
/////DO NOT EDIT PAST HERE/////
x = txt.length;
i = 0;
text = new Array();
string = "";
while (x >= i)
{
text[i] = txt.charAt(x);
string = string + text[i];
x--;
}
document.write(string);
</script>