I have some inputs using the chosen plugin that I want to validate as \"required\" on the client side. Since \"chosen\" hides the actual select e
this simple CSS rule works on joomla 3's implementation of chosen
Chosen adds the class invalid to the hidden select input so use this to target the chosen select box
.invalid, .invalid + div.chzn-container a { border-color: red !important; }