Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Javascript
Scrolling text
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="PythonistL, post: 4937409"] Hello Peter, Thank you for your reply. I changed the script as you suggested <HTML> <HEAD> <TITLE>Scrolling Message Script</TITLE> <script type="text/javascript"> var msg = 'My scrolling text.....'; var myTimeout; function scrollMsg() { document.scrollDemo.textScroll.value = msg; msg = msg.substring(1,msg.length) + msg.substring(0,1); myTimeout = setTimeout(scrollMsg, 200); } </script> </HEAD> <BODY bgcolor="white" onLoad="scrollMsg()"> <FORM name="scrollDemo"> <INPUT type="text" onmouseover="if (myTimeout) { clearTimeout( myTimeout; }" name="textScroll" size=30 value="Loading" > </FORM> </BODY> </HTML> but the scrolling text still does NOT stop when I put a mouse cursor over the text. Where did I make a mistake in the script? Thank you for your reply. L. [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Javascript
Scrolling text
Top