Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aimahdi/67da2c9a4263ae61098899964e8c4102 to your computer and use it in GitHub Desktop.
Save aimahdi/67da2c9a4263ae61098899964e8c4102 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($) {
$('.fluentform input[name="input_radio"]').click(function() {
if (this.wasChecked) {
$(this).prop('checked', false);
} else {
$(this).prop('checked', true);
}
this.wasChecked = this.checked;
// Forcefully trigger the change event
$(this).trigger('change');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment