Forum Moderators: open
/**
* Random Text / Quotes
* Written to element with ID="text-goes-here"
*/
var quotes = [
"To be or not to be, that is the question!",
"Space - the final frontier!",
"Jack and Jill went up the hill..."
];
var obj = document.getElementById('text-goes-here');
if (obj) {
var index = Math.floor(Math.random() * quotes.length);
obj.innerHTML = quotes[index];
}
<script type="text/javascript" src="random_quotes.js"></script>
<div id="text-goes-here"></div>