Andreas Wahlin schrieb:
> I have a jquery selection of input tags of type checkbox, I want to
> filter out those that are checked. Feels like it should be something
> easy like
>
> $('[EMAIL PROTECTED]', checkboxes);
>
> andreas
With that you would get all checkboxes that are checked already on load
(e.g. via attribute in the HTML source).
Try this:
$('input:checked', checkboxes);
-- Klaus
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/