I have 3 checkboxes and how I can disable remaining two checkboxes on selecting one checkbox My code is
model
public bool checkbox1{get; set;}
public bool checkbox2{get; set;}
public bool checkbox3{get; set;}
View
@Html.CheckBoxFor(m=>m.checkbox1)
@Html.CheckBoxFor(m=>m.checkbox2)
@Html.CheckBoxFor(m=>m.checkbox3)
When I select checkbox 1, remaining 2 checkboxes should be disabled and vice versa. I am new to programming. can u help me out using javascript