Untitled

 avatar
unknown
plain_text
9 months ago
264 B
1
Indexable
update the below code for the  given requirements:
update regex to detect html tag pattern ,like anything <>



Validator.register('alphaNumericCheck', function (value, requirement) {
    var pattern = /^[A-Za-z0-9 ,.?'#^*~]+$/;
    return pattern.test(value);
});
Editor is loading...
Leave a Comment