/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(function() { $("input:checkbox").click(function() { if($(this).attr("checked")) { valorChecado = $(this).val(); $("input:checkbox").each(function() { if($(this).val() != valorChecado && $(this).attr("checked")) { $(this).removeAttr("checked"); } }); } }); });