Is there a way to change an attribute of a CSS class using javascript?
I think it would work if instead put like this:
var elements = document.getElementsByTagName('select'); for(var i = 0; i < elements.length; i++){ elements[i].style.display = 'none'; }