I\'m trying to put a checkbox in each of my accordion headings to indicate whether something should be disabled or not. The checkbox shows up fine, however, its not clickabl
Try setting the checkbox to checked in the acordion click event, using
in the html and
$('input[name=foo]').attr('checked', true);
in the event.