I have a scrolling text that is moving upwards. Actually, it's inside a <marquee> tag. I have three links that are scrolling up on a continuous basis. My question is, how do I get the marquee to stop scrolling for a few seconds when one link (or msg) scrolls into the box? I hope I'm making sense here. Below is the script:
<html>
<head><title>Scrolling Text</title>
<style type="text/css">
a:link {color: blue; text-decoration: none;}
a:visited {color: blue; text-decoration: none;}
a:active {color: blue; text-decoration: none;}
a:hover {color: red; text-decoration: underline;}
</style>
</head>
<body>
<H1 align="center">Scrolling Text</h1><hr>
<p>
<h3>Sites to look up:</h3>
<table>
<tr>
<td>
<a href=" </tr>
<tr>
<td><a href=" </tr>
<tr>
<td><a href=" </tr>
</table>
<div align="center">
<p>
<marquee bgColor="lightblue"
behavior="scroll"
direction="up"
scrollamount="1"
scrolldelay="100"
title="Scrolling down the river."
width="280"
height="50"
vspace="10">
<a href=" what's going on at IBM. </a>
<p><br>
<a href=" out the latest Honda web site. </a>
<p><br>
<a href=" a <b>question?</b> - we have an <b>answer!</b></a>
<p>
</marquee>
</div>
</body>
</html>
<html>
<head><title>Scrolling Text</title>
<style type="text/css">
a:link {color: blue; text-decoration: none;}
a:visited {color: blue; text-decoration: none;}
a:active {color: blue; text-decoration: none;}
a:hover {color: red; text-decoration: underline;}
</style>
</head>
<body>
<H1 align="center">Scrolling Text</h1><hr>
<p>
<h3>Sites to look up:</h3>
<table>
<tr>
<td>
<a href=" </tr>
<tr>
<td><a href=" </tr>
<tr>
<td><a href=" </tr>
</table>
<div align="center">
<p>
<marquee bgColor="lightblue"
behavior="scroll"
direction="up"
scrollamount="1"
scrolldelay="100"
title="Scrolling down the river."
width="280"
height="50"
vspace="10">
<a href=" what's going on at IBM. </a>
<p><br>
<a href=" out the latest Honda web site. </a>
<p><br>
<a href=" a <b>question?</b> - we have an <b>answer!</b></a>
<p>
</marquee>
</div>
</body>
</html>