Side navigation
#1272 closed bug (duplicate)
Opened June 06, 2007 09:06AM UTC
Closed June 21, 2007 06:02PM UTC
.is("img[@src], input[@src]") only match imgs.
Reported by: | Carmine | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.1.3 |
Component: | core | Version: | 1.1.2 |
Keywords: | is | Cc: | |
Blocked by: | Blocking: |
Description
If i use a filter like this :
$(this).filter(function(index){
return $(this).is("img[@src], input[@src]");
}).hide();
The inputs are never selected.
I need to do this to have a correct selection :
$(this).filter(function(index){
return (
$(this).is("input[@type=image][@src]") ||
$(this).is("img[@src]"));
}).hide();
Whooah ! Trac has stripped my two pipes. There is of course an 'or' between the to elements of the second proposal.