|
-
Jan 29th, 2001, 06:33 AM
#1
Thread Starter
New Member
marquee tag is not applicable in netscape navigator?please how to scroll text within botk iE and Netscape?
?
-
Jan 29th, 2001, 08:00 AM
#2
PowerPoster
there is no easy way, or at least not as easy as using the <marquee> tag, you would have to make it in javascript to get it to work in NN. Look at this website, i think that they may have some good cross browser scrollers: http://www.24fun.com
-
Jan 29th, 2001, 09:20 AM
#3
Frenzied Member
chezhian, is this the sort of thing that you want?
Code:
<HTML>
<script language="javascript">
var msg = "chezhian, is this the sort of thing that you want? "
function scrollit()
{
document.form1.txtScroll.value= msg;
msg = msg.substring(1) + msg.substring(0,1);
setTimeout("scrollit()",100)
}
</script>
<BODY onload=scrollit()>
<Center>
<FORM name=form1>
<input name=txtScroll>
</FORM>
</Center>
</body>
</HTML>
PS, most of the scripts on 24fun are IE only !
-
Jan 29th, 2001, 09:23 AM
#4
Frenzied Member
sail3005
replies like "look at this site there might be something there" are totally pointless!
post an exact link or don't bother!

Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|