I have a bunch of options in a form for the user to select. The way the options should work is as follows:
- Either the user selects the 'All categories' option.
- OR the user can select one or more of the other options.
So basically I want the clicking of the 'All categories' option to remove the selection on all other options, and I want the selection of options other than 'All categories' to unselect the 'All categories' option. Currently, all of these options are checkboxes, but I'm open to changing them.
I'm guessing I'll need to use some sort of jQuery/Javascript for this behavior. Any ideas?