textbox only allowed in numbers

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • monikagovindaraj
    New Member
    • Aug 2007
    • 11

    textbox only allowed in numbers

    sir,
    In textbox,i want enter only numbers. to avoid the character in the textbox.
    it must be in javascript.
  • pbmods
    Recognized Expert Expert
    • Apr 2007
    • 5821

    #2
    Heya, monikagovindara j.

    Originally posted by monikagovindara j
    it must be in javascript.
    That's what we have a JavaScript forum for :)

    I'll go ahead and move your thread for you.

    Comment

    • acoder
      Recognized Expert MVP
      • Nov 2006
      • 16032

      #3
      Originally posted by monikagovindara j
      sir,
      In textbox,i want enter only numbers. to avoid the character in the textbox.
      it must be in javascript.
      Use regular expressions (see link).
      The regular expression you'd use could be
      Code:
      /^\d+$/

      Comment

      Working...