If a user types either small or capital alphabets in <input type="text"/> tag, then it should become all capital. Can this be done using javascript?
Thanks and regards,
Vikas
Thanks and regards,
Vikas
<script type="text/javascript">
function capital(temp){
return String.toUpperCase(temp);
}
</script>
<td align="left"><input type="text" style="width:250px " name="vlan_name" onchange="return capital(this);"/></td>
Comment