So i have a div thats auto generated and inside are 3 check boxes with different id\'s & names and by default none of them are checked!! If one happens to get checked th
Use the prop function to change the checked property of checkbox and radio buttons
prop
$(function(){ $('input:checkbox').prop('checked', false) $('input:checkbox').click(function(){ if($(this).is(':checked')){ $('input:checkbox').not(this).prop('checked', false); } }); })
Demo: Fiddle