Hello,
there are many things that needto fix but it's toosimple
take a look at this
jscript
<html>
<title>Random Proverbs</title>
<head>
<script type="text/javascript">
function changeQuote() {
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 newQuate= quotes[Math.round(Math.random()*quotes.length)];
document.getElementById("quote").value=newQuate;
}
var tick = setInterval("changeQuote()",1000)
</script>
</head>
<body >
<form id="quoteform" action=" ">
<input type="text" size="50" id="quote"><br><br>
</form>
</body>
</html>
I hope it helps
This post has been edited by ahmad_511: 23 Jul, 2008 - 03:19 PM