Guest_imported
New member
- Jan 1, 1970
- 0
Please help me. I have a script that shows simething on the status bar, but it will not work in certain browsers, or even on the same browser at different servers. Here is the script:
<html><head><title>The Official Page For Idiotic Humor</title></head>
<script type=javascript>
myMsg = "IDIOTIC HUMOR NEWS: Palestinian prime minister Yassir Arafat recently stated that he would refuse to attend the Middle Eastern summit this Monday. In response, President Clinton stated, 'Fine, then you're not going to my birthday party.' In world news, it has just been announced that a street in Russia will be named Lennon street, not after the communist leader, but after the Beatles' John Lennon. Sources here at IDIOTIC HUMOR NEWS inform us that nobody cares. As Al Gore idles away in preparation for the next debate, George W. Bush has already thought of his new slogan: 'Vote for me, not him' In sports, Shaquille O'neal was signed by the Lakers for a contract extension for a 3-Year $88 million dollar contract. The original agreement was $44 million, but the tides turned when the seven foot center threatened to step on Lakers coach Phil Jackson. "
i=0
function scrollMsg(){
frontpart = myMsg.substring(i,myMsg.length)
backpart = myMsg.substring(0,i)
window.status = frontpart + backpart
if(i<myMsg.length){
i++
}
else{
i = 0
}
setTimeout("scrollMsg()",100)
}
</script>
<body onload="scrollMsg()">
Any advice at all would be a great help
thank you
<html><head><title>The Official Page For Idiotic Humor</title></head>
<script type=javascript>
myMsg = "IDIOTIC HUMOR NEWS: Palestinian prime minister Yassir Arafat recently stated that he would refuse to attend the Middle Eastern summit this Monday. In response, President Clinton stated, 'Fine, then you're not going to my birthday party.' In world news, it has just been announced that a street in Russia will be named Lennon street, not after the communist leader, but after the Beatles' John Lennon. Sources here at IDIOTIC HUMOR NEWS inform us that nobody cares. As Al Gore idles away in preparation for the next debate, George W. Bush has already thought of his new slogan: 'Vote for me, not him' In sports, Shaquille O'neal was signed by the Lakers for a contract extension for a 3-Year $88 million dollar contract. The original agreement was $44 million, but the tides turned when the seven foot center threatened to step on Lakers coach Phil Jackson. "
i=0
function scrollMsg(){
frontpart = myMsg.substring(i,myMsg.length)
backpart = myMsg.substring(0,i)
window.status = frontpart + backpart
if(i<myMsg.length){
i++
}
else{
i = 0
}
setTimeout("scrollMsg()",100)
}
</script>
<body onload="scrollMsg()">
Any advice at all would be a great help
thank you