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? |
||||
|
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:
|
|||||||||||||||
|
|
Using jQuery:
HTML:
|
|||||||
|
|
here's a different way less code
|
||||
|
|
|
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 |
||||
|
|
|
Demo http://jsfiddle.net/H37cb/
|
|||
|
|
|
I'm not sure anyone hasn't answered in this way (using jQuery):
It's clean, has no loops or if/else clauses and works as a charm. |
|||
|
|
|
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
|
|||
|
|
|
||||
|
|
|
|||
|
|
|
that should do the job done:
|
|||
|
|