Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function ValidateMoney(_id) {
  2. var amount = document.getElementById(_id).value;
  3. var patron = /^(d+|d+,d{2})$/;
  4. if (!patron.test(amount)) {
  5. window.alert('cantidad ingresada incorrectamente');
  6. document.getElementById('amount').focus();
  7. return false;
  8. } else {
  9. return true;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement