I'm trying to select elements with multiple conditions, for example I'm doing the following at the moment:
$('#myspan').find('input:visible').each(myfunc);
Although I know you can do things like $('#myspan input:visible')
but it didn't work for me. I need to check for inputs within the span #myspan
which are visible and are checked. Any ideas?
I'm trying to select elements with multiple conditions, for example I'm doing the following at the moment:
$('#myspan').find('input:visible').each(myfunc);
Although I know you can do things like $('#myspan input:visible')
but it didn't work for me. I need to check for inputs within the span #myspan
which are visible and are checked. Any ideas?
2 Answers
Reset to default 6Try:
$("#myspan :checked:visible").each(function() {
// do stuff
});
$('input:visible', '#myspan').find(':checked').each(function() {
alert(this.id);
});
Should do the trick. I like seperating things because I like to think it helps jQuery parse better.