Marquee 'direction' Example
<html> <body> <script language="JavaScript"> function function1(){ document.all.myMarquee.direction = "up"; } function function2(){ document.all.myMarquee.direction = "left"; } function function3(){ document.all.myMarquee.direction = "right"; } function function4(){ document.all.myMarquee.direction = "down"; } </script> <marquee id="myMarquee" bgcolor="cyan">SCROLLING MARQUEE</marquee> <button onclick="function1();">Up</button> <button onclick="function2();">Left</button> <button onclick="function3();">Right</button> <button onclick="function4();">Down</button> </body> </html>