I want to validate a texbox with min char=5, max=20, allow alphabet and numbers and only 3 special characters !@# using plain jQuery (no plugin)
function chkText() {
$(".cssText").each(function() {
// add regex condition here in an IF statement
});
}