View Single Post
ישן 17-10-08, 16:45   # 1
Zvaim.co.il
חסום
 
מיני פרופיל
תאריך הצטרפות: Aug 2008
הודעות: 322

Zvaim.co.il לא מחובר  

היפוך טקסט עם JS. עזרה קטנה..

קוד:
	<script type="text/javascript">
	<!--
		function reverse()
		{
			var txt=document.txt.thetxt.value
			var newstring=""
			for(i=0;i<txt.length;i++)
			{
				newstring+=txt.charAt(txt.length-1)
			}	
			document.txt.thetxt.value=newstring;
		}
	//-->
	</script>
מה הבעיה כאן?
תודה רבה ושבת שלום.