I'm trying to change all fields that have a name 'make' or 'model' that's in an array list. I'm sure I'm not doing something simple to make this work. But this function below does not work. How do I change the class name of multiple fields from an array list?
CSS
hide {
display: none;
}
array = ['make','model'];
function deactivateField( array ) {
count = array.length;
for (i = 0; i < count; i++) {
array[i].className = 'hide' );
}
}
<td id="make" name="make" class="show">aaa</td>
<td id="make" name="make" class="show">bbb</td>
<td id="make" name="make" class="show">ccc</td>
<td id="model" name="model" class="show">111</td>
<td id="model" name="model" class="show">222</td>
<td id="model" name="model" class="show">333</td>