Last Updated: February 25, 2016
·
625
· ramiro

Uncheck all checkboxes

Sometimes there are many active checkboxes that you want to uncheck, i. e. email notification settings on several sites. Run this in your browser console:

cb=document.querySelectorAll('input[type="checkbox"]');
for(i in cb){cb[i].checked=false}