I have a group of radio buttons on my page like this:
ALL (x) On ( ) Off OPTION 1 (x) On ( ) Off OPTION 2 (x) On ( ) Off OPTION 3 (x) On ( ) Off OPTION 4 (x) On ( ) Off
When you check the On or Off radio button for "All," it sets all the other radio buttons to the same setting:
var autoPostAllOn = $('#auto-post-all-on');
var autoPostAllOff = $('#auto-post-all-off');
var fbPostToggleOn = $('.fb-post-toggle-on');
var fbPostToggleOff = $('.fb-post-toggle-off');
$(autoPostAllOn).click(function(){
$(fbPostToggleOn).attr('checked', 'checked');
});
$(autoPostAllOff).click(function(){
$(fbPostToggleOff).attr('checked', 'checked');
});
However, I also want to do the reverse: for example, if the user manually checks all the Off buttons, automatically check the Off button for "All" too. How would I go about doing this?