/** * @author https://codepen.io/bookmarklets * @file Toggle All checkboxes.
Toggle all of the checkboxes on a page with a single click. * Original Source {@link https://cdpn.io/bookmarklets/fullpage/NobJbq#} */ javascript:(function(){ function toggle(box){ temp=box.onchange; box.onchange=null; box.checked=!box.checked; box.onchange=temp; } var x,k,f,j; x=document.forms; for (k=0; k