I am trying to only allow ASCII characters for my input fields. The test Fiddle seems to not know what to do with a TAB character:
https://jsfiddle.net/jp2code/5enmojb2/77/
Yes, 77 iterations, so far. Feel free to look at all I have tried.
$().ready(function() {
$('input').bind('paste', function(e) {
var text = $(this).val();
var txt2 = text.replace(/[^x00-x19]/g, ' ');
$(this).val(txt2);
});
});
ASCII Chart from Wikipedia used to determine that I do not want ASCII characters 0x00 to 0x19, hence the regular expression used above.
This last version has no errors, but it copies what is in the input box above into the input box below, including the TAB that I want to be replaced with a blank space.
How do I replace any occcurance of ASCII characters 0x00 to 0x19 with a single space?