<input id="myCheckbox" type="checkbox" /> Please, please check me
<input id="myRadio" type="radio" /> Am I selected ?
I would like the following behavior:
- When myCheckbox is checked then myRadio is going to get selected.
- When myCheckbox is unchecked then myRadio is going to become unselected.
How will I do this in a very simple way ?
Thank you in advance for your effort to respond.