-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidar_caracteres.js
35 lines (27 loc) · 1.15 KB
/
validar_caracteres.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
var textoIngresado = document.getElementById("input-texto")
textoIngresado.addEventListener("input", function(){
var patron = /[a-z\s]{1,300}$/;
var errorTexto = document.querySelector("#error-texto")
if (textoIngresado.value.length > 0 && !patron.test(textoIngresado.value)){
errorTexto.classList.remove("invisible"),
swal({
title:"Error!!",
text: "cambiar el caracter ingresado",
icon: "error",
buttons :false,
timer:2000
})
}else{
errorTexto.classList.add("invisible")
var encriptadoTexto = document.querySelector("#btn-encriptar")
encriptadoTexto.addEventListener("click", function(event){
event.preventDefault();
document.getElementById("msg").value = encriptarTexto(textoIngresado.value)
})
var desencriptadoTexto = document.querySelector("#btn-desencriptar")
desencriptadoTexto.addEventListener("click", function(event){
event.preventDefault();
document.getElementById("msg").value = desencriptarTexto(textoIngresado.value)
})
}
})