Hi !!
please send me the javascript by which user will be able to enter only alphabets

Hello Nikita
If you want to validate latters in the input fields try the following function.

function isAlphabet(elem, helperMsg){
var alphaExp = /^[a-zA-Z]+$/;
if(elem.value.match(alphaExp)){
return true;
}else{
alert(helperMsg);
elem.focus();
return false;

}

}

Call the above function in your code.
for more detail visit signature link.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.