Guest User

Untitled

a guest
Sep 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <script>
  2. document.querySelector("#show").addEventListener("click", (e) => {
  3. let target = e.target;
  4. let password = document.querySelector("#password");
  5. let type = password.getAttribute("type");
  6. if(type == "text"){
  7. password.setAttribute("type", "password");
  8. target.textContent = "show password";
  9. }else if(type == "password"){
  10. password.setAttribute("type", "text");
  11. target.textContent = "hide password";
  12. }
  13. })
  14. </script>
Add Comment
Please, Sign In to add comment