All Tags »
html »
alphanumeric wi... »
regexp javascript
Sorry, but there are no more tags available to filter with.
-
Good Day.
I am using the following code to validate data on a HTML page
function checkTermMoYr (strng) {
var error = "";
if (strng == "") {
error = "You didn't enter a Loan Term.\n";
}
//var illegalChars = /\W/;
var illegalChars = \s;
// allow only letters, numbers, ...