Criteria Syntax Result
Any value at all selected. data-showhide-show="options"
Exactly: "Apple" data-showhide-show="options=Apple"
Exactly: "Apple" and "Banana" (and nothing else) data-showhide-show="options=Apple,Banana"
Includes all of: Apple, Banana data-showhide-show="options+=Apple,Banana"
Doesn't Include: Apple data-showhide-show="options-=Apple"
Doesn't Include any of: Apple, Banana data-showhide-show="options-=Apple,Banana"
Doesn't Include any of: Apple, Banana data-showhide-show="options!|=Apple,Banana"
Any of: "Apple", "Banana", "Cherry" data-showhide-show="options|=Apple,Banana,Cherry"
Any value other than exactly: "Apple" data-showhide-show="options!=Apple"

Criteria Syntax Result
Any value at all selected. data-showhide-show="Fruit"
Exactly: "Apple" data-showhide-show="fruit=Apple"
Exactly: "Apple" and "Banana" (and nothing else) data-showhide-show="fruit=Apple,Banana"
Includes all of: Apple, Banana data-showhide-show="fruit+=Apple,Banana"
Doesn't Include: Apple data-showhide-show="fruit-=Apple"
Doesn't Include any of: Apple, Banana data-showhide-show="fruit-=Apple,Banana"
Doesn't Include any of: Apple, Banana data-showhide-show="fruit!|=Apple,Banana"
Any of: "Apple", "Banana", "Cherry" data-showhide-show="fruit|=Apple,Banana,Cherry"
Any value other than exactly: "Apple" data-showhide-show="fruit!=Apple"
Criteria Syntax Result
Any value at all selected for either options or fruit. data-showhide-show="options&Fruit" data-showhide-join="or"