I want to /uncheck a checkbox by JS and prevent user to /uncheck it by click.
in normal checkboxes I can use this code:
$('#checkbox').on('click', function(event){
event.preventDefault();
});
but this code does'nt work for Uniform checkboxes