Select All

Select option according to Child

by achilles03anil

HTML

<h4 class="panel-title parent-enable">
  <a data-toggle="collapse" href="#collapse7"> notification</a>
  <input id="input_name" class="notification" name="permission_name[]" type="checkbox" value="1">
</h4>

CSS

.parent-enable {
  background: lightgreen !important;
}

JavaScript

$(function() {
  $("#input_name").click(function() {
    alert("Handler for .change() called.");
  });
  $('input[type="checkbox"]').change(function(event) {
    alert("checked");
  });
});