Guest User

Untitled

a guest
Jan 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. if (document.formCliente.numeroContabilidad.value!="") {
  2.  
  3. var regNUM = /^ ([0-9]) *$/;
  4.  
  5. if (regNUM.test(document.formCliente.numeroContabilidad.value) == false){
  6. alert("El numero de contabilidad es incorrecto.");
  7. document.formCliente.numeroContabilidad.focus();
  8. return false;
  9. }
  10. }
Add Comment
Please, Sign In to add comment