I'm trying to make them work together but obviously due to dropkick hiding the select tag where I have the class required for the validate.js it isn't validating properly.
HTML:
<select id="element_3" name="element_3" class="required select">
<option value="" selected="selected">Please select</option>
<option value="Hatch">Hatch</option>
<option value="Clubman">Clubman</option>
<option value="Convertible">Convertible</option>
<option value="Countryman">Countryman</option>
<option value="Coupe">Coupé</option>
<option value="Roadster">Roadster</option>
<option value="Paceman">Paceman</option>
<option value="No particular model of interest">No particular model of interest</option>
<option value="Other/New Model">Other/New Model</option>
</select>
So with dropkick.js this html obviously is removed with the class required which makes it a bit of a problem.
I was wondering if anyone had a solution to this?
Thanks