On 12/02/07, Andreas Wahlin <[EMAIL PROTECTED]> wrote:
> 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
Even simpler than that.
For all checked boxes on a page:
$("input:checked")
For those within a form (or div, fieldset etc) with an id "myform":
$("#myform input:checked")
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/