HTML text input allow only numeric input

 <input type="text" onkeyup="this.value=this.value.replace(/[^\d]/,'')">

Comments