Posts

Showing posts with the label Javascript

HTML Javascript input textbox only numeric

Javascript         function isNumberKeyNoDot(evt) {             var charCode = (evt.which) ? evt.which : event.keyCode             if (charCode > 31 && (charCode < 48 || charCode > 57))                 return false;             return true;         } Textbox