January 13, 2017

Deselect all checkbox inside Div

Using Jquery we can easily deselect all checkboxes inside div

$('#DivID').find('input[type=checkbox]:checked').removeAttr('checked');

No comments:

Post a Comment