I've looked over some documentation on the jQuery validation plugin website as well as did a search on this site for a few questions that might be able to render me an answer but I have not found one that has suited me as a solution. What I'm trying to do is get my select tag to validate as an option is needed to be selected to pass the validation of the element.
As of right now with my other form fields validating I am in limbo wit the lone element not validating. I found that adding required to the select element should work but it is not.
Is there anything else to try?
<select class="form-control chosen-select" required data-placeholder="User Status" name="user_status" style="display: none;">
<option value=""></option>
<option value="1">Active</option>
<option value="2">Inactive</option>
<option value="3">Suspended</option>
<option value="4">Banned</option>
<option value="5">Deleted</option>
</select>