Display a backwards solution to a question
Ask a few guessing questions on your site and disguise the responses. For example:
When a car takes a right curve at 140 km/h, which wheel turns the slowest?
Answer:
Insert the following script in the location where you want to display the backwards text:
<script>
<!--
function makeMyMessage(text){
var firstMessage=text.toUpperCase()
var secondMessage=""
for (i=firstMessage.length;i >= 0;i--) {
secondMessage+=firstMessage.substring(i,i-1)
}
document.write(secondMessage)
}
makeMyMessage("backward text")
//-->
</script>
Discover all Webmaster tips.