I think so:
$(document).on('dblclick','.yourCls',function(){
if(this.checked){
$(this).prop('checked', !this.checked);
}
});
Well, you need to check its check status this.checkedreturns boolean values true/false. if trueuncheck or check it.
source
share