Broadcast checkbox

by Rich Costello

HTML

<label for="coupon_question">Public Station</label>
       <input class="coupon_question" type="checkbox" checked/>
 

   <div class="broadcastopt">
       <label for="coupon_field">Listen & Broadcast</label>
       <input type="checkbox" name="coupon_field" class="listenb" checked/>
       <br>
       <label for="coupon_field">Listen Only</label>
       <input type="checkbox" name="coupon_field" class="listenb"/>
   </div>

JavaScript

$(".coupon_question").click(function() {
    if($(this).is(":checked")) {
        $(".broadcastopt").show();
    } else {
        $(".broadcastopt").hide();
    }
});

$('input.listenb').on('change', function() {
    $('input.listenb').not(this).prop('checked', false);  
});