Answer the question
In order to leave comments, you need to log in
Userscript, so that he would remove the default checkboxes on the site?
There is a site on which checkboxes are set by default on some options, how to write a script that would change the default checkboxes.
I don’t understand scripts from the word at all, but I hope to do it in the image and likeness. So some example is needed.
Answer the question
In order to leave comments, you need to log in
For example:
var array = document.querySelectorAll('input[type=checkbox]'), i;
for(i = array.length; i--;) {
if(array[i].checked) array[i].checked = false;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question