Skip to content

Instantly share code, notes, and snippets.

@ritacse
Created July 2, 2019 10:06
Show Gist options
  • Save ritacse/d7692ba2c9ce8f8a52692f11c5816589 to your computer and use it in GitHub Desktop.
Save ritacse/d7692ba2c9ce8f8a52692f11c5816589 to your computer and use it in GitHub Desktop.
$(".txtNumber").alphanum({ allowLatin: false, maxLength: 7 });
$(".txtDesimal").numeric({
allowMinus: false,
allowThouSep: false,
maxDigits: 11,
maxDecimalPlaces: 2
});
$(".txtPhone").alphanum({ allow: '-+,', allowLatin: false });
$(".txtName").alphanum({ allow: '.()', allowNumeric: false });
$(".txtDate").alphanum({ allow: '/', allowLatin: false });
$(".txtText").alphanum({ allow: ',./()-', disallow: '"' });
$(".txtIDs").alphanum({ allow: ',', allowLatin: false });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment