I have multiple forms within modals that have have input with same (name/id).
Is it possible to scope conditionize to a specified form.
$("#eventForm [data-condition]").conditionize({
scope:"#eventForm",
ifTrue: function ($s) { $s.removeClass('d-none'); },
ifFalse: function ($s) { $s.addClass('d-none'); }
});
Or any workaround ?
I have multiple forms within modals that have have input with same (name/id).
Is it possible to scope conditionize to a specified form.
Or any workaround ?