Hi Guys - I know this is not exactly CF but I'm trying to change the css of a select box on error to red and the message but whatever Im trying its not having any effect - It is a CF project btw - just using jquery to validate 🙂
<script src="
https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.7.0/jquery.validate.js"></script>
<form id="demographicsform" action="?action=mergeDashboardDemograpphics" method="post">
<div class="row-liquid">
<p class="span4">
<label for="corpID">Select Client</label>
<select name="corpID" id="corpID" class="required">
<option value="">None</option>
<cfloop query="getCorps">
<option value="#getCorps.id#"> #getCorps.label# (#getCorps.id#)</option>
</cfloop>
</select>
</p>
</div>
<input type="submit" />
</form>
<script>
$("##demographicsform").validate({
messages: {
corpID: {
required: "Please select an option from the list!",
},
}
});
</script>