tehsolace
Newbie
- Joined
- Oct 3, 2003
- Messages
- 1,472
- Reaction score
- 0
Hey guys! I was bored so I decided to start a thread where everyone types backwards backwards (in other words: reverse backwards).
If anybody has trouble, I made this nice javascript to help you out:
If anybody has trouble, I made this nice javascript to help you out:
Code:
<html><script type="text/javascript">
function reverse_backwards(s){
var sr = '';
for (var i = s.length-1;i>=0;i--)
sr += s.charAt(i);
for (var i = sr.length-1;i>=0;i--)
document.write(sr.charAt(i));
}
reverse_backwards("Type your message here");
</script></html>