On Tue, Jan 19, 2010 at 2:31 PM, Jeff <[email protected]> wrote: > if ($("input[type='checkbox'][checked]").size() == 0)
Think you want:
if ($("input[type='checkbox']:checked").size() == 0)
Nathan
On Tue, Jan 19, 2010 at 2:31 PM, Jeff <[email protected]> wrote: > if ($("input[type='checkbox'][checked]").size() == 0)
Think you want:
if ($("input[type='checkbox']:checked").size() == 0)
Nathan