Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. $("#form-contacto").validate({
  2. rules:{
  3. tipo_documento: {
  4. required: true,
  5. },
  6. numero_documento: {
  7. required: true,
  8. },
  9. nombre: {
  10. required: true,
  11. },
  12. apellido_paterno: {
  13. required: true,
  14. },
  15. apellido_materno: {
  16. required: true,
  17. },
  18. email: {
  19. email: true,
  20. },
  21. ciudad: {
  22. required: function(){
  23. return !$("#pais").val() ? false : ($("#pais").val() != 'PE')
  24. },
  25. },
  26. departamento: {
  27. required: function(){
  28. return !$("#pais").val() ? false : ($("#pais").val() == 'PE')
  29. },
  30. },
  31. provincia: {
  32. required: function(){
  33. return !!$("#departamento").val();
  34. },
  35. },
  36. distrito: {
  37. required: function(){
  38. return !!$("#provincia").val();
  39. },
  40. },
  41. },
  42. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement