Hello!
I have a quote script that I have set to show a quote daily and in sequential order, not random, as you see below.
<script>
var quotes=new Array();
Stamp = new Date();
today = Stamp.getDate();
quotes[0]="<i>If the facts don't fit the theory, change the facts.</i><BR><font color=#000000>- Albert Einstein</font>"
quotes[1]="<i>It's not the hours you put in your work that counts, it's the work you put in the hours.</i><BR><font color=#000000>- Sam Ewing</font>"
quotes[2]="<i>Pleasure in the job puts perfection in the work.</i><BR><font color=#000000>- Aristotle</font>"
quotes[3]="<i>When a man tells you that he got rich through hard work,<BR>ask him: Whose?</i><BR><font color=#000000>- Don Marquis</font>"
quotes[4]="<i>Genius is 1% inspiration,<BR>99% perspiration.</i><BR><font color=#000000>- Thomas A. Edison</font>"
quotes[5]="<i>Science is organized knowledge. <BR>Wisdom is organized life.</i><BR><font color=#000000>- Immanuel Kant</font>"
quotes[6]="<i>Ye shall know the truth, and the truth shall set you free.</i><BR><font color=#000000>- Bible (John 8:32)</font>"
quotes[7]="<i>Many of life's failures are people who did not realize how close they were to success when they gave up.</i><BR><font color=#000000>- Thomas A. Edison</font>"
quotes[8]="<i>If I have seen further it is by standing on the shoulders of giants.</i><BR><font color=#000000>- Isaac Newton</font>"
quotes[9]="<i>Faith is the substance of things hoped for, the evidence of things not seen.</i><BR><font color=#000000>- Bible KJV(Heb. 11:1)</font>"
quotes[10]="<i>High achievement always takes place in the framework of high expectation.</i><BR><font color=#000000>- Jack Kinder</font>"
function writeQuote() {
document.write(quotes[today]);
}
</script>
My question is simple...
Can somebody write the NEW script so that each quote is viewed hourly?
Then can you tell me how to write a script that changes every 10 seconds, while the surfer is viewing the page?
I need help with TIME script.
Thanks!
The KRYPTOR
"What Is SEEN Is TEMPORAL, What Is UNSEEN Is ETERNAL".
I have a quote script that I have set to show a quote daily and in sequential order, not random, as you see below.
<script>
var quotes=new Array();
Stamp = new Date();
today = Stamp.getDate();
quotes[0]="<i>If the facts don't fit the theory, change the facts.</i><BR><font color=#000000>- Albert Einstein</font>"
quotes[1]="<i>It's not the hours you put in your work that counts, it's the work you put in the hours.</i><BR><font color=#000000>- Sam Ewing</font>"
quotes[2]="<i>Pleasure in the job puts perfection in the work.</i><BR><font color=#000000>- Aristotle</font>"
quotes[3]="<i>When a man tells you that he got rich through hard work,<BR>ask him: Whose?</i><BR><font color=#000000>- Don Marquis</font>"
quotes[4]="<i>Genius is 1% inspiration,<BR>99% perspiration.</i><BR><font color=#000000>- Thomas A. Edison</font>"
quotes[5]="<i>Science is organized knowledge. <BR>Wisdom is organized life.</i><BR><font color=#000000>- Immanuel Kant</font>"
quotes[6]="<i>Ye shall know the truth, and the truth shall set you free.</i><BR><font color=#000000>- Bible (John 8:32)</font>"
quotes[7]="<i>Many of life's failures are people who did not realize how close they were to success when they gave up.</i><BR><font color=#000000>- Thomas A. Edison</font>"
quotes[8]="<i>If I have seen further it is by standing on the shoulders of giants.</i><BR><font color=#000000>- Isaac Newton</font>"
quotes[9]="<i>Faith is the substance of things hoped for, the evidence of things not seen.</i><BR><font color=#000000>- Bible KJV(Heb. 11:1)</font>"
quotes[10]="<i>High achievement always takes place in the framework of high expectation.</i><BR><font color=#000000>- Jack Kinder</font>"
function writeQuote() {
document.write(quotes[today]);
}
</script>
My question is simple...
Can somebody write the NEW script so that each quote is viewed hourly?
Then can you tell me how to write a script that changes every 10 seconds, while the surfer is viewing the page?
I need help with TIME script.
Thanks!
The KRYPTOR
"What Is SEEN Is TEMPORAL, What Is UNSEEN Is ETERNAL".