Checkbox Test 1 function disableOne() { var box = document.getElementById("normal"); box.disabled = true; } function enableOne() { var box = document.getElementById("normal"); box.disabled = false; } This is a two-state checkbox test. Checkbox One (Normal) Disable Checkbox Enable Checkbox