You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For anyone wanting to spare 3 hours, the solution is very easy:
line 15, replace:
this.$element.find(':not(.selected-custom) :selected, .selected-custom').each(function () {
by:
this.$element.find(':not(.selected-custom) :selected, .selected-custom, >:selected').each(function () {
This just also consider directly under , not only through (which is filtered by the class "selected-custom").
This plugin is great, but it doesn't seem to allow a setup where I can have options outside of an optgroup:
Is there a tweak I can make somewhere to allow this case?
The text was updated successfully, but these errors were encountered: