Created
March 12, 2019 09:24
-
-
Save rajvanshipradeep15/ac929cd5430276d4bb034711b7348e82 to your computer and use it in GitHub Desktop.
Only Alphabets in input field allowed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.signature_field').bind('keyup blur',function(){ | |
var node = $(this); | |
node.val( node.val().replace(/[^a-z]/g,'') ); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment