This code works very fine in i.e but not in firefox and chrome
Code:
<html> <head> <script type="text/javascript1.2"> var message="Welcome to my Page!"; var neonbasecolor="gray"; var neontextcolor="#F6EE0A"; var flashspeed=100 ; var n=0 if (document.all){ document.write('<font color="'+neonbasecolor+'">') for (m=0;m<message.length;m++) document.write('<span style="font-size:25px; font-family:Georgia;" id="neonlight">'+message.charAt(m)+'</span>') document.write('</font>') var tempref=document.all.neonlight } else document.write(message) function neon(){ if (n==0) { for (m=0;m<message.length;m++) tempref[m].style.color=neonbasecolor } tempref[n].style.color=neontextcolor if (n<tempref.length-1) n++ else{ n=0 clearInterval(flashing) setTimeout("beginneon()",1500) return } } function beginneon(){ if (document.all) flashing=setInterval("neon()",flashspeed) } beginneon(); </script> </head> <body> </body> </html>
Comment