View Single Post
Old 02-08-2008, 06:54 PM   #6 (permalink)
Smiggy
New Hunter
 

Join Date: Dec 2007
Location: United Kingdom - Dorset - Bournemouth
Posts: 88
iTrader: 0 / 0%
Hunter Bux: 5.00
Smiggy will become famous soon enoughSmiggy will become famous soon enough
Send a message via MSN to Smiggy
Default

My Attempt:

Code:
function Random_Note()
{
	var note = new Array(6)
	var Select = Random();
	note[0] = "Quote";
	note[1] = "Quote";
	note[2] = "Quote";
	note[3] = "Quote";
	note[4] = "Quote";
	note[5] = "Quote";
	document.getElementById('Random').innerHTML = "<b>" + note[Select] + "</b>";
	var Time = setTimeout("Random_Note()", 1500);
}
function Random()
{
    var Random_Number_Selection = Math.floor(Math.random()*6);
    return Random_Number_Selection;
}
__________________
<!-- I can type the entire Alphabet in 2.19 seconds -->

/* (X/D)Html, Css, Javascript, Ajax, Xml (DTD), PHP, MySQL, E4X */
/* Learning C++ and German */
Smiggy is offline   Reply With Quote