[EMAIL PROTECTED] wrote:
> Gilles or anybody else with knowledge of the cssHover plugin:
>
> Can you please tell me how can I select all checkboxes in a form controlled
> by cssHover with a "select all" click event?
>
>
You could use jQuery to find all checkboxes you want to toggle:
jQuery(<some code to select some cssHover elements>).each(function() {
this.chSetState(true);
});
Check the code for more documentation, or shout in here ;)
-- Gilles
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/