On May 16, 6:45 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote:
> I prefer to use the is() function for this type of thing because I
> think it reads really well:
>
> if($(this).is(':checked')) {

Somewhat more convoluted than:

    if (this.checked) {...}


--
Rob

Reply via email to