Advertisement
tadeuespindola

suporte-aluno-ronaldo-jdev-caixaki

Sep 6th, 2023
940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function validarSenhaLogin() {
  2.     let j_username = document.getElementById('j_username').value;
  3.     let j_password = document.getElementById('j_password').value;
  4.  
  5.     if (j_username === null || j_username.trim() === '') {
  6.         alert("Informe o Login.");
  7.          $("#j_username").focus();
  8.         return false;
  9.     }
  10.  
  11.     if (j_password === null || j_password.trim() === '') {
  12.         alert("Informe a Senha.");
  13.          $("#j_password").focus();
  14.         return false;
  15.     }
  16.  
  17.     return true;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement