Help for this page

Select Code to Download


  1. or download this
    print "Content-type: text/html\n\n";
    
    ...
    </SELECT>
    <INPUT TYPE=button VALUE="Select All" ONCLICK="selectAll(this.form.dem
    +o,true)">
    <INPUT TYPE=button VALUE="Clear All" ONCLICK="selectAll(this.form.demo
    +,false)">
    
  2. or download this
    function selectAll(cbList,bSelect) {
      for (var i=0; i<cbList.length; i++) 
        cbList[i].selected = cbList[i].checked = bSelect
    }