Modify ↓
Ticket #5003 (closed bug: worksforme)
IE7 selector bug when selecting several nodes by ID
| Reported by: | neuronix | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.4 |
| Component: | unfiled | Version: | 1.3.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
I've noticed that the following code does not work properly in IE7 :
$('#myid1, #myid2').css({ myattr: 'myprop'});
Whereas the following code works fine :
$('#myid1').css({ myattr: 'myprop'}); $('#myid2').css({ myattr: 'myprop'});
Thanks for the great work.
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.

work for me, would you mind adding an example?