|
| |
|
|
|
|
|
|
|
|
|
|
| |
|
|
|
|
|
|
Topic : Converting Text to Lowercase
|
|
Author : CodeHUNT
|
Total Visits: 87
|
|
Published Date:
Monday, March 27, 2000
|
|
|
|
Example :
Type text in uppercase in the textbox and press Ok Button
<BODY>
<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>
Type text in uppercase in the textbox and press Ok Button
</center>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|