Use the change handler instead because the click are happening in the label
$(document).on('change', 'input:radio[id^="q_op_"]', function (event) {
alert("click fired");
});
Demo: Fiddle
Use the change handler instead because the click are happening in the label
$(document).on('change', 'input:radio[id^="q_op_"]', function (event) {
alert("click fired");
});
Demo: Fiddle