Numerals Only : TextField : Form Control JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Form Control » TextField »

 

Numerals Only



<HTML>
<HEAD>
<TITLE>Numerals Only</TITLE>
<SCRIPT
function numeralsOnly(evt) {
    evt = (evt? evt : event;
    var charCode = (evt.charCode? evt.charCode : ((evt.keyCode? evt.keyCode : 
        ((evt.which? evt.which : 0));
    if (charCode > 31 && (charCode < 48 || charCode > 57)) {
        alert("Enter numerals only in this field.");
        return false;
    }
    return true;
}
</script>
</head>
<body>
<form>
<input type="text" ... onkeypress="return numeralsOnly(event)">
</form>
</body>
</html>
           
       



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Form Control
» TextField