I HAVE searched on here but, despite finding LOTS of similar and most likely MUCH more complicated situations, couldn't find an answer to what I am wanting to do.
Basically, on my site's search form I want to present 2 radio button options:
<label><input type="radio" name="question_9[]" value="Blue" checked="checked" />Blue</label>
<label><input type="radio" name="question_9[]" value="Green" />Green</label>
BUT what I want to be submitted with the search form is:
<input type="hidden" name="question_9[]" value="Blue" checked="checked"/>
<input type="hidden" name="question_9[]" value="Blue/Green" checked="checked"/>
OR
<input type="hidden" name="question_9[]" value="Green" checked="checked"/>
<input type="hidden" name="question_9[]" value="Blue/Green" checked="checked"/>
depending on which radio button is checked when the form is submitted.
The software I am using recently migrated from scriptaculous to JQuery, which I am completely new to. I am hoping there is an easy way to pass 2 values for the question based on which radio button is selected, since as far as I know I can only select ONE value with radio buttons unless I do a workaround like this. Since the radio buttons themselves won't/shouldn't be submitting values with the form, they can be renamed or whatever needs be done to make it work.
I really appreciate any tips and again, I looked and didn't find another question asking to do the same as this (kind of surprised me) but HOPE that I am not being redundant with a question like this.