Using jquery, how can I:
1- Have all checkboxes on a page turned checked on or off?
2- Loop through all the checkboxes on the page which are selected. I.e something like this
$(sel-cboxes).each(myFunction);
So myFunction
would be called on each selected checkbox.
Thanks in advance!