JSFiddle - React, Tailwind, and code Playground
by Abhilash1994
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
Manufacturer:
<input type="checkbox" id="myCheck">
<br> Scrap:
<input type="checkbox" id="myCheck1">
JavaScript
$(document).ready(function() {
$('#myCheck').change(function() {
if ($(this).prop('checked')) {
document.getElementById("myCheck1").disabled = true;
} else {
document.getElementById("myCheck1").disabled = false;
}
});
$('#myCheck1').change(function() {
if ($(this).prop('checked')) {
document.getElementById("myCheck").disabled = true;
} else {
document.getElementById("myCheck").disabled = false;
}
});
});