if you are using unique id's on each multiple select you could have a
check box that calls a function when checked that will iterate through
all of the options in the select and add the selected attribute. You
should look into JQuery's each()... it easily iterates through an
array where $("#select option").each(function(){}); will iterate
through each option in a select. Inside function(){} you would then
set the attribute.

On Jun 24, 11:08 am, shaded <dar...@eztransition.com> wrote:
> ravi, matthew,
>
> thanks for the responses, and i totally agree that this group is huge.
> Google could have added a few more features to their groips app. this
> is very barebones:(
>
> here is what im doing,
>
> i've been using this (http://remysharp.com/2007/09/18/auto-populate-
> multiple-select-boxes/) plugin to chain several multiple select boxes
> where the input from the previous populates values in the next. so far
> with lots of tweaks and additions it seems to be doing what i want.
>
> i have it selecting all values from the next box each time one or more
> values from the current box is selected.  I'd like to add a select all
> option to the head of each list that would automatically select all
> options when selected.
>
> sounds trivial, but this is my first jquery/ajax project

Reply via email to