Here is a working model of the quote generator:





Installation instructions:
  • Download ultrarandom.js and save it in your website's directory
  • Modify the quotes inside "ultrarandom.js" to be the quotes you want
  • Add the following code on your website where you would like the quote generator to appear:
  • Random quote generator by <a title="random quote generator"
      href="http://www.brandonchecketts.com/">www.brandonchecketts.com</a>
    <script language="javascript" src="ultrarandom.js"></script>
    <form name="quoteForm">
      <textarea wrap="virtual" name="quoteHere" rows="4" cols="60">
        Random Quotes Java Script 
        Thanks to Brandon Checketts
        http://www.brandonchecketts.com/
      </textarea><br />
      <input type=button value="Previous" onClick="prevQuote();" />
      <input type=button value="Next" onClick="nextQuote();" />
      <input type=button value="Random" onClick="randQuote();" />
    </form>
    
  • That's it! It's very simple to install