Just letters
1 2 3 4 5 |
$("#companyname").keyup(function(){ $(this).val($(this).val().replace(/[^A-Za-z]/g, '')) } |
Allow letters and numbers
1 2 3 |
$(this).val($(this).val().replace(/[^a-zA-Z0-9]/g, '')); |
Just letters
1 2 3 4 5 |
$("#companyname").keyup(function(){ $(this).val($(this).val().replace(/[^A-Za-z]/g, '')) } |
Allow letters and numbers
1 2 3 |
$(this).val($(this).val().replace(/[^a-zA-Z0-9]/g, '')); |
© 2022 CODEHAVEN