Do this:
$('#myRadioButton').change(function(){ alert("changed"); }); $('input[type=radio]').not('#myRadioButton').change(function(){ $('#myRadioButton').change(); });
What it does ?
We know that, a radio button only gets deselected when any other radio button gets selected.
So I basically bind a change event for #myRadioButton and then bind all other radio buttons except #myRadioButton to the change event and on it, i invoke #myRadioButton's change event. like $('#myRadioButton').change();
Here is the JsFiddle I'm damn sure, that it will work.
Mark it as answer if it helps :)