pointer-events: none;
This doesn't work in IE but works in Chrome, I need to disable checkboxes in IE, is there any way to disable checkboxes from CSS?
try with js
$(window).load(function() {
$('.wrapper input[type="checkbox"]').attr('disabled', true);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="wrapper"><label>disabled input <input type="checkbox"></label></div>