<!--
Restrict input to alphanumeric and uppercase :
-->
<input type="text" onkeydown="f(this)" onkeyup="f(this)"
onblur="f(this)" onclick="f(this)" />
<!--
Javascript Code :
-->
<script language="javascript">
function f(o) {
o.value = o.value.toUpperCase().replace(/([^0-9A-Z])/g,"");
}
</script>
12 Ağustos 2007 Pazar
Restrict input to alphanumeric and uppercase
Subscribe to:
Kayıt Yorumları (Atom)
0 Comments:
Post a Comment