Jay Gooby schrieb:
> I'm using build 249:
>
> In pre-1.0.1 builds
>
> $(this).find("[EMAIL PROTECTED]")
>   
Hey Jay,

as 'checked' is the name of the attribute, your selector would have to 
look like this:

$(this).find("[EMAIL PROTECTED]")

But as Klaus mentioned, you should prefer the pseudoclass :checked like 
this:

$(this).find("input:checked")

In the latest revision, you could do this:
$(this).find(":checkbox:checked, :radio:checked"), selecting all 
checkboxes and radio buttons that are checked.

-- Jörn

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to