I have an HTML page with multiple checkboxes.
I need one more checkbox by the name "select all". When I select this checkbox all checkboxes in the HTML page must be selected. How can I do this?
|
I have an HTML page with multiple checkboxes. I need one more checkbox by the name "select all". When I select this checkbox all checkboxes in the HTML page must be selected. How can I do this?
| ||||
feedback
|
UPDATE: The for each...in construct doesn't seem to work, at least in this case, in Safari 5 or Chrome 5. This code should work in all browsers:
| |||||||||||
feedback
|
|
Using jQuery:
HTML:
| ||||
feedback
|
|
JavaScript is your best bet. The link below gives an example using buttons to de/select all. You could try to adapt it to use a check box, just use you 'select all' check box' onClick attribute. Javascript Function to Check or Uncheck all Checkboxes This page has a simpler example | ||||
|
feedback
|
|
If adopting the top answer for jquery, remember that the object passed to the click function is an EventHandler, not the original checkbox object. Therefore code shoudl be modified as follows. Html
Javascript
| |||
|
feedback
|