If I have radio buttons :
<input id="y0" type="radio" name="myRadioBtns" value="a" checked> <label for="y0"></label>
<input id="y1" type="radio" name="myRadioBtns" value="b"> <label for="y1"></label>
<input id="y2" type="radio" name="myRadioBtns" value="c"> <label for="y2"></label>
The radio buttons may have already bound a change event handler like following:
$('input[name='myRadioBtns']').change(function() {
//EVENT HANDLER
});
I need to check if the radio buttons have already bound with a "change" event handler or not.
My question is How to check if the radio buttons has already bound with a "change" event handler?