Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save igoralves1/fa314a61c668a00f5d3b1f1fa1e90bc6 to your computer and use it in GitHub Desktop.
Save igoralves1/fa314a61c668a00f5d3b1f1fa1e90bc6 to your computer and use it in GitHub Desktop.
Validation regex Javascript
function validateRefund(el) {
reg = /^[1-9][0-9]*(\.[0-9]{1,2})?$/;
if (!reg.test(el.value))
return false;
if (parseFloat(el.value) > parseFloat($(el).data('max')) || parseFloat(el.value) <= 0) {
return false;
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment