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 */
|