Answers for "change all input field background-color with javascript"

CSS
5

html input background color

input[type="text"], textarea {

  background-color : #d1d1d1; 

}
Posted by: Guest on February-16-2020
5

javascript change color of text input

document.getElementById("yourInputID").style.color = 'the color of your choice';
Posted by: Guest on November-29-2020

Code answers related to "change all input field background-color with javascript"

Browse Popular Code Answers by Language