ReactiveRaven / jqBootstrapValidation

A JQuery validation framework for bootstrap forms.
http://reactiveraven.github.io/jqBootstrapValidation
MIT License
1.35k stars 336 forks source link

Does not check for null variables #177

Open tylerwowen opened 9 years ago

tylerwowen commented 9 years ago

The following piece of code creates a null variable, and will fail the validation plugin.

<select class="form-control" required data-validation-required-message="Please ... ">
  <option disabled>Default Info</option>
  <option>Choice 1</option>
</select>