argh, its NOT the solution!! 🙁
what i wanted is the following:
i have the following code:
echo "<input type=\"radio\" name=\"selectall\" onclick=\"selectAll(this.form,0);\">Select All\n";
echo "<input type=\"radio\" name=\"selectall\" onclick=\"selectAll(this.form,1);\">Inverse All\n";
by clicking on a radio then the checkboxes in the form are selected all or deselected.
but i just dont like to have checkboxes, so i wanted to have links like "select all" and "deselect all". is there a way to do it? i think you have to add the link to the <form>, because the onclick makes changes on "this.form"... anyone knows a solution?
thx