|
|
Browse by Tags
All Tags » HTML » alphanumeric with restraints
-
Hi guys,
Sure this is probobly simple but my head just can't get around this issues... I'm trying to parse the HTML to start replacing/removing problem tags to meet W3C AA compliance and various other requirements. The first one i'm working on is removing the 'bgcolor' attribute of any table/tr/td tag. But using the ...
-
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, ...
|
|
|