Modify ↓
Ticket #1272 (closed bug: duplicate)
.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: | |
| Blocking: | Blocked by: |
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();
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Whooah ! Trac has stripped my two pipes. There is of course an 'or' between the to elements of the second proposal.