i use this plugin: http://bassistance.de/jquery-plugins/jquery-plugin-validation/
Is it possible to validate select-fields with style="display:none" ?
I need this because another Plugin style my dropdown and set the original select-field to display:none and create an own with div and ul.
In this case select name=xxx wasn't validated :-(
<select style="display: none;" sb="20200222" name="xxx" class="300" id="yyy">
<option selected="selected" value="">Choose</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<div class="sbHolder" id="sbHolder_20200222">
<ul style="top: 38px; max-height: 193px; display: none;" class="sbOptions" id="sbOptions_20200222">
<li><a rel="" href="#">Choose</a></li>
<li><a rel="1" href="#1">1</a></li>
<li><a rel="2" href="#2">2</a></li>
<li><a rel="3" href="#3">3</a></li>
</ul>
</div>
Any ideas?