Results 1 to 2 of 2

Thread: Only nums in text box.

  1. #1

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Only nums in text box.

    Code:
    <script type="text/javascript">
    <!--
    function isNumericKey(e)
    {
    var k = document.all ? e.keyCode : e.which;
    return ((k > 47 && k < 58) || k == 8 || k == 0);
    }
    
    function extractNumeric(str)
    {
    return str.replace(/\D/g,"");
    }
    // -->
    </script>
    
    
    <input type="text" onkeypress="return isNumericKey(event)" onchange="this.value=extractNumeric(this.value)" />

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width