<input type="text" id="order" /> <script> window.onload = function () { var order = document.getElementById("order"); if (order) order.value = null; order.oninput = function () { this.value = this.value.replace(/\D/g, ''); } }; </script>