$('input').on('ifChanged', function(event){ alert('Unchecked'); $(this).prop('checked',false).icheck('uncheck'); } }); she2 commented Feb 26, 2021 This solution by @Lihatskiy only worked a few times then stop working $('input[type="checkbox"]').removeAttr('checked').iCheck...
Hello, I'm trying to do a simple uncheck of all my other radio buttons when there is one selected. Also must the radiobuttons be resetted (unchecked) when the main selecter has been checked. I got 3 different radiogroups with all 1 main activator. ...