I\'m trying to use the jQuery Validate plugin to validate a dropdown. It validates the rest of my form correctly. But it doesn\'t work on the dropdown.
Here is my jQue
$('#campaignForm').validate({ rules: { html_url: { min: 1, } }, messages: { html_url: 'Please select a template', } });