Techno World Inc - The Best Technical Encyclopedia Online!

THE TECHNO CLUB [ TECHNOWORLDINC.COM ] => Javascript Tricks => Topic started by: Tina on September 20, 2007, 01:23:29 PM



Title: write in music style
Post by: Tina on September 20, 2007, 01:23:29 PM
Write in music style

Type the test in the scrapbook and paste the following code in the address bar..

Code:
javascript:cor=new Array('green','♫','red','♪','maroon','♫','navy','♪','gray','♫','yellow','♪','blue','♫');var z=0;txt=document.getElementsByTagName('textarea')[0]; txt.value=txt.value.replace(/\n/gi,'§ ');sp=txt.value.split(' ');txti='';for(l=0;l<sp.length;l++){txti+="["+cor[z]+"]"+sp[l]+' ';z++;if(z==cor.length){z=0}}; txt.value=txti;txt.value=txt.value.replace(/\§/gi,'\n');void(0)