Files
inventario/js/hidePassword.js
T
Alfredo Lima 9f2001c549 Inicio
2020-02-26 15:43:19 -06:00

17 lines
471 B
JavaScript
Executable File

function mostrarPassword(){
var cambio = document.getElementById("txtPassword");
if(cambio.type == "Password"){
cambio.type = "text";
cambio.src = "img/icons/eye-slash-solid.png";
}else{
cambio.type = "Password";
cambio.src = "img/icons/eye-solid.png";
}
}
$(document).ready(function () {
//CheckBox mostrar contraseña
$('#ShowPassword').click(function () {
$('#Password').attr('type', $(this).is(':checked') ? 'text' : 'password');
});
});