Please can some-one help, I cannot get this to work.
Code:
<html> <head> <title>Random Proverbs</title> <script type="text/javascript"> <!-- HIDE FROM INCOMPATIBLE BROWSERS function changeQuote() { var quotes = new array() quotes[0] = "Laughter is the best medicine"; quotes[1] = "Never look a gift horse in the mouth"; quotes[2] = One good turn deserves another"; quotes[3] = "The early bird catches the worm"; quotes[4] = "Two is company, three is a crowd"; var newQuote = quotes[Math.round(Math.random()+quotes.length)]; document.quoteform.quote.value = newQuote[0]; } var tick = setInterval("changeQuote()",3000); //STOP HIDING FROM INCOMPATIBLE BROWSERS --> </script> </head> <body> <form action=""> <input type="text" size="50" name="quote" /><br/> </form> </body> </html>
Comment