Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pkelly2003

    How to clear a value entered in text box if it is not alphabetic

    I found my own answer! I just needed to add this line to the function to make it work: window.event.keycode = "" -pk
  2. pkelly2003

    How to clear a value entered in text box if it is not alphabetic

    I tried that but it still entered the number that the user enters. I am using a function to check for numbers being entered using window.event.keycode. Here is what I have so far: function checkKey if (window.event.keyCode < 65) or (window.event.keyCode > 90) and (window.event.keyCode < 97)...
  3. pkelly2003

    How to clear a value entered in text box if it is not alphabetic

    More specifically, I want to clear any numbers entered (as they are entered - before the form is even submitted).
  4. pkelly2003

    How to clear a value entered in text box if it is not alphabetic

    Question: On the client side, how do I automatically clear a value entered into a form text box if it is not alphbetic (not a letter)?

Part and Inventory Search

Back
Top