sisyphus
sisyphus copied to clipboard
exclude multiple fileds
my setup:
excludeFields: [$('select[name="name_select"]'), $('input[name="name_input"]')],
but does not exclude
Event though array is used, it doesn't work with array / multiple jquery objects. You should try using single jquery object. In your case this would look like this:
excludeFields: $('select[name="name_select"], input[name="name_input"]'),