I have 15 check boxes in a form. This checkboxes are independent to eachother.
I want a javascript function that makes, when user is selecting 2 checkboxes, the first checke
What you can do instead is to use input type radio and set a common name for all of them. If you try to check another, it will automatically uncheck first one.