|
موضوع
اسكريپت All Lower Case
اين
اسكريپت تبديل كننده تمام ورودي يك فيلد متني به حروف كوچك مي باشد .
.
<!-- ONE STEP TO INSTALL ALL LOWER CASE:
1. Copy the coding into the BODY of your HTML document -->
<!-- STEP ONE: Paste this code into the BODY of your HTML document
-->
<BODY>
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://WWW.OSTADONLINE.COM-->
<center>
<form name="capsform">
<input type="text" name="caps" size=40 value=""
onChange="javascript:this.value=this.value.toLowerCase();">
<br>
<input type="button" value="Ok!">
</form>
</center>
<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided by
ostadonline<br>
<!-- Script Size: 0.55 KB --> |