Need an alert Message while i key in Numbers in the Name Field

Discussion in 'JavaScript' started by coolwebdesigner2k, Jul 13, 2008.

  1. #1
    Hey Guys! Please help me out.

    I need a JS code which should show an alert message while i jus key in numeric values in the Name text box.


    Thank you in Advance!
    Peter
     
    coolwebdesigner2k, Jul 13, 2008 IP
  2. Logic Ali

    Logic Ali Well-Known Member

    Messages:
    170
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    108
    #2
    It would be more civilised just to prevent them being entered:
    <input ......... onkeyup="this.value=this.value.replace(/\d+/g,'')">
    Code (markup):
    You're welcome in advance.
     
    Logic Ali, Jul 13, 2008 IP