I have a field that does not need any white spaces. I need to remove any as they are entered. Here’s what I’m trying… no luck so far
$('#noSpacesField').click(function() {
$(this).val().replace(/ /g,'');
});
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use jQuery trim to remove leading and trailing white space
To remove all whitespace…
To remove whitespace as it is entered…
Live Example