[jQuery] Multi Combined Selectors
hi all. i'm new here and i hope posting in right place. I'd like to
ask if and how I can add multicombined selectors like:
$(this).parent().parent().$("input:checkbox[class='list']").attr
('checked')
I know that the $("input:checkbox[ppb='list']") isn't right but i just
want to show you what i want to do.
I'm already inside a selector:
$("input:button[name='delete']").click(function() {
if ($(this).parent().parent().$("input:checkbox[class='list']").attr
('checked')) {
//dosomething
}
});
is this posible?
thanks in advance
N.