Get all elements like this without jQuery
<input type="checkbox" name="IB_PROPERTY_415_DEL" id="IB_PROPERTY_415_DEL" value="Y">
<input type="checkbox" name="IB_PROPERTY_417_DEL" id="IB_PROPERTY_417_DEL" value="Y">
Where 415 changing every iteration, with whole values (414, 416, etc)
Other checkbox with other names exist on page
I needs one time solution, for console script
Use a loop?
(The unique identifier should be enough)
If you don’t know the ids, you could try this:
(Note that
document.querySelectorAllwon’t work in all browsers, see @Matt’s solution for a better way)