1input:focus {
2 outline: none !important;
3 border-color: #719ECE;
4 box-shadow: 0 0 10px #719ECE;
5}
6textarea:focus {
7 outline: none !important;
8 border-color: #719ECE;
9 box-shadow: 0 0 10px #719ECE;
10}
1.input:focus {
2 outline: none !important;
3 border:1px solid red;
4 box-shadow: 0 0 10px #719ECE;
5}
1document.getElementById("fName").className = document.getElementById("fName").className + " error"; // this adds the error class
2
3document.getElementById("fName").className = document.getElementById("fName").className.replace(" error", ""); // this removes the error class
4