My part of form programe where javascript function is called is -
Description of Javascript function is as follows -
Can I use Javascript method in this function capital(temp) to check if the this value exist in oracle table?
Thanks and regards
Vikas
Code:
<tr>
<td align="right" style="width:125px ">VLAN Name :</td>
<td align="left"><input type="text" style="width:250px " name="vlan_name" id="vlan_name" onkeyup="capital(this);"/></td>
</tr>
<tr>
<td align="right" style="width:125px ">VLAN First IP :</td>
<td align="left"><input type="text" style="width:100px " name="first_ip" id="first_ip" onchange="firstip(this);"/></td>
</tr>
Code:
function capital(temp){
var str = temp.value;
document.getElementById(temp.id).value = str.toUpperCase();
}
Thanks and regards
Vikas
Comment