When the tab is switching, how do I uncheck a check box using Jquery?

document.getElementById(‘paidli’).onclick = function() {

$(‘input:checkbox’).prop(‘checked’,false);

checkboxes.prop(‘checked’,false); }

We can set the checked status to false using props.

Leave a comment

Your email address will not be published. Required fields are marked *