Answers for "how to make password visible button in html"

5

how to make a show password button

function myFunction() {
  var x = document.getElementById("*passwordbox-id*");
  if (x.type === "password") {
    x.type = "text";
  } else {
    x.type = "password";
  }
}
Posted by: Guest on March-28-2020
0

how to make password visible button in html

a*******[email protected]
Posted by: Guest on December-29-2020

Code answers related to "how to make password visible button in html"

Browse Popular Code Answers by Language