Uncheck Radio Button

PHOTO EMBED

Wed Nov 30 2022 05:46:12 GMT+0000 (Coordinated Universal Time)

Saved by @danlourenco #testado

$('input[type=radio]').click(function(){
    if (this.previous) {
        this.checked = false;
    }
    this.previous = this.checked;
});
content_copyCOPY

https://jsfiddle.net/8jKJc/221/