should also be pretty easy to roll your own :not-checked selector:

$.expr[":"]["not-checked"] = function(elem, i , m) {
    // use === false to avoid undefined "checked" property
    // creating false positives
    return elem.checked === false;
}

On Nov 19, 3:00 pm, Charlie Griefer <charlie.grie...@gmail.com> wrote:
> http://docs.jquery.com/Selectors/not
>
> On Thu, Nov 19, 2009 at 12:55 PM, Atkinson, Sarah <
>
> sarah.atkin...@cookmedical.com> wrote:
> >  What is the opposite of :checked?
>
> > Is it :unchecked? Or would you use the not (!)
>
> --
> Charlie Grieferhttp://charlie.griefer.com/
>
> I have failed as much as I have succeeded. But I love my life. I love my
> wife. And I wish you my kind of success.

Reply via email to