hassank1 Posted May 10, 2008 Share Posted May 10, 2008 Hi I want to build a page with many checkboxes .. however there's one main checkbox if I press. all other checkboxes will be checked too.. how can I do that thx Quote Link to comment Share on other sites More sharing options...
RichardRotterdam Posted May 11, 2008 Share Posted May 11, 2008 here is a start for you <script> function setCheckBox(){ if(document.getElementById('main_checkbox').checked){ document.getElementById('my_checkbox').setAttribute('checked','checked'); }else{ document.getElementById('my_checkbox').removeAttribute('checked'); } } </script> subcheckbox <input type="checkbox" id="my_checkbox" /><br /> main checkbox <input type="checkbox" id="main_checkbox" onChange="setCheckBox()" /><br /> Quote Link to comment Share on other sites More sharing options...
bibby Posted May 11, 2008 Share Posted May 11, 2008 ought to do it //js function checkAll() { // get all the inputs var cb = document.getElementsByTagName('input'); // loop through them for(var i=0;i<cb.length;i++) { // looking only for checkboxes if(cb[i].type=='checkbox') { // check it cb[i].checked=true; } } } //html <input type="checkbox" name="checkAll" onclick="checkAll()" /> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.