I\'m trying to validate select2 field using jquey.validation plugin but nothing happens.
I want to make select required field.
I\'m using this custom validat
As a tip, please consider that the validate js bind itself to changes of select not select 2. This cause problem in below case:
select box
which is converted to select2
You can fix it with:
$("select").on("select2:close", function (e) {
$(this).valid();
});