Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function validarSenhaLogin() {
- let j_username = document.getElementById('j_username').value;
- let j_password = document.getElementById('j_password').value;
- if (j_username === null || j_username.trim() === '') {
- alert("Informe o Login.");
- $("#j_username").focus();
- return false;
- }
- if (j_password === null || j_password.trim() === '') {
- alert("Informe a Senha.");
- $("#j_password").focus();
- return false;
- }
- return true;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement