If you ever need to check a lot of checkboxes on a single and the interface doesn’t have an adequate facility for doing so (Exchange webmail…..), a little bit of javascript will save your mouse button; Type into the address bar and press enter:
javascript: var checks = document.getElementsByTagName('input'); for(i=0;i<checks.length;i++) { checks[i].checked = 'checked'; }; alert('done');
⊗ January 19, 2009, 10:27am