Answers for "change input box border"

CSS
2

add border to input css

border: none;
border-bottom: 1px solid blue;
Posted by: Guest on March-11-2020
0

how to change input border color with js

document.getElementById("fName").className = document.getElementById("fName").className + " error";  // this adds the error class

document.getElementById("fName").className = document.getElementById("fName").className.replace(" error", ""); // this removes the error class
Posted by: Guest on January-20-2021

Code answers related to "change input box border"

Browse Popular Code Answers by Language