The following script works fine for IE6 but not IE7.
Could someone advise on how to modify the code so that it also works in IE7?
Many thanks.
Code:<SCRIPT Language="JavaScript"> var msg="Welcome to my site"; var interval = 300; seq = 0; function Scroll() { len = msg.length; window.status = msg.substring(0, seq+1); seq++; if ( seq >= len ) { seq = 0 }; window.setTimeout("Scroll();", interval );} </SCRIPT>



Reply With Quote

Bookmarks