Answers for "hide and show password in jquery"

0

jquery show password

$("#showpaswd").click(function () {
        var x = document.getElementById("cpassword");
        if (x.type === "password") {
            x.type = "text";
        } else {
            x.type = "password";
        }
    });
Posted by: Guest on June-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language