|
Example
Look at the bottom of your screen and you should see "Welcome to Computer Hope;
helping you with ALL your computer Questions."
Source code
<SCRIPT LANGUAGE="JavaScript">
<!-- //hide script
messageNum = 0;
//first message to be displayed in 3 seconds
setTimeout("messageChanger();", 3000);
//second message
function messageChanger() {
if (messageNum ==0) {
defaultStatus = "Welcome to Computer Hope";
messageNum = 1;
} else {
defaultStatus = "Helping you with ALL Computer Questions.";
messageNum = 0;
}
//Schedule the next message
setTimeout("messageChanger();", 3000);
}
// --> </SCRIPT> |
|
| Resolved | Were you able to locate the answer to your questions? |
|
|