Opened 13 years ago
Closed 12 years ago
#5867 closed bug (invalid)
hasClass() behaviour change
Reported by: | valugi | Owned by: | john |
---|---|---|---|
Priority: | minor | Milestone: | 1.4.1 |
Component: | selector | Version: | 1.4 |
Keywords: | traversing, hasClass | Cc: | |
Blocked by: | Blocking: |
Description
I updated my application to 1.4 from 1.3.2 and this stops working.
1.3.2 version this was an logical OR. if (el.hasClass('.seq_up_active, .seq_down_active')) {}
in 1.4 this is not working anymore and I have to use
el.hasClass('seq_down_active')) {} |
Note: See
TracTickets for help on using
tickets.
Thanks for the report, but this is not a jQuery bug. If you want to test multiple class selectors, use
$.fn.is
.