Reputation: 341
i have an ajax form i know i can use like
return str = str.replace(/\D/g,'');
to strip stuff before submit whats the best way to stop form submit when characters that are not alphabetic or numeric are inputed
my the ajax search form is at vitamovie.com/movies
Upvotes: 1
Views: 1022
Reputation: 630429
When submitting, you can run this on the values:
$("#myForm").submit(function() {
$("input, textarea").each(function() {
$(this).val($(this).val().replace(/[^a-zA-Z0-9]/g, ''));
});
});
Upvotes: 2