how to validate form with name field must not have space and numbers using jquery code example
Example: jquery validator no space
$('#IdElement').keypress(function (e) {
if (e.which === 32)
return false;
})
$('#IdElement').keypress(function (e) {
if (e.which === 32)
return false;
})