I have been asked to disable the \"ticking\" of a checkbox. I am not being asked to disable the checkbox, but to simply disable the \"ticking\".
In other w
It is very important to use return false at the end.
return false
Something like this:
$("#checkbox").click((e) => { e.stopPropagation(); return false; });