I currently have a group of checkboxes displayed on a webpage within a DIV labeled OPTIONS, shown below:
<div id="options">
<input type="checkbox"..... >
<input type="checkbox"..... >
<input type="checkbox"..... >
<input type="checkbox"..... >
<input type="checkbox"..... >
...
...
</div>
Considering that every input inside this specific DIV will always function as a checkbox, I am interested in finding out if there is a way to automatically assign them the checkbox functionality without having to manually specify type="checkbox"
for each one using CSS or JavaScript.