Stop Marquee with Buttons

Example Code


<!-- Codes by HTMLmagics-->
<marquee behavior="scroll" direction="left" scrollamount="50" id="mymarquee">
<p>See how fast I am!</p>
</marquee>
<input type="button" value="Stop Marquee" onClick="document.getElementById('mymarquee').stop();">
<input type="button" value="Start Marquee" onClick="document.getElementById('mymarquee').start();">
<p><a  style="font-size:11px;color:#999;" href="http://wwwhtmlmagics.blogspot.com/marquees/stop-marquee.cfm">Pause marquee</a></p>



Result


See how fast I am!




Pause marquee