validation code / function to allow only Letters in a text box
Answer / kevin konkle
//A script to format the Name field to only allow letters
//Have this be called off the keypress event of your
textbox control.
function nameFormat(fld, e)
{
var key = '';
//This string contains all characters you want to allow
//It could just as easily be 0123456789 to only allow
numbers.
var strCheck
= 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
var whichCode = (window.Event) ? e.which : e.keyCode;
if (whichCode == 13) return true; // Enter
if (whichCode == 8) return true; // Delete
// Get key value from key code
key = String.fromCharCode(whichCode);
// Not a valid key
if (strCheck.indexOf(key) == -1) return false;
//If it is a legal value then add it to the text box
fld.value += key;
return false;
}
Is This Answer Correct ? | 21 Yes | 17 No |
create Drop-Down Navigation Menus
How to test whether two strings are equal or not ?
i am making a purchase sheet in html ,it contain names of product(by selecting checkboxes),quantity(textbox) and price(checbox), by using java script i am restricting the user to prevent them to enter the wrong data ,so i made the servlet were i am only able to prevent them to enter the page in empty field , so my doubt is how do you prevent them how to enter non numerical data in quantity field
Reading which Non-Character Key was pressed
How to block double clicks
validation code / function to allow only Letters in a text box
how to Auto Scroll the page
how to create a Draggable element
snippet to prevent submission of form when certain/any validations got failed
create a slide show
Code to Block submission of form by pressing Enter Key
Code for Adding Message and Confirmation Boxes Using JavaScript?