Guest User

Untitled

a guest
Feb 25th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var password = document.querySelector("#password");
  2. var confirm = document.querySelector("#confirmation");
  3. var button = document.querySelector("button");
  4. var pass_value = password.value;
  5.  
  6. var change_border = function() {
  7.  
  8. if(pass_value !== null || pass_value !== "s1234") {
  9. password.style.border = "3px solid gray";
  10. confirm.style.border = "3px solid gray";
  11. }
  12. }
  13. button.addEventListener("click", change_border);
Add Comment
Please, Sign In to add comment