Normally people complain about checkbox clicking not triggering any event but in my case it's opposite, I want to uncheck checkbox without triggering any click event on it.
This is my precious checkbox,
<asp:CheckBox ID="someID" runat="server" Text="myCheckBoxText" OnClick="DoSomething();" />
                You can use .prop():
//Un-check
$("#someID").prop("checked",false);
//check
$("#someID").prop("checked",true);
                        Please try with the below code snippet.
//check
$("#someID").prop("checked",true);
//Un-check
$("#someID").prop("checked",false);
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With