Modify ↓
Ticket #4965 (closed bug: duplicate)
Whitespace in class attribute causes selector trouble.
| Reported by: | brendo_ | Owned by: | john |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.4 |
| Component: | selector | Version: | 1.3.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
See the attached testcase is probably the easiest way to understand this bug.
Pretty much, the $('.field-date') finds the correct elements, but then in the each loop, $(this).hasClass('.field-date') fails when there is extra whitespace between the classes.
I think there might be two bugs here, because the original $('.field-date') finds the correct elements regardless of whitespace, but then hasClass chokes on the whitespace.
A pure JS test is provided too, which shows the correct results (two raw:true's)
Attachments
Change History
Changed 4 years ago by brendo_
-
attachment
testcase.html
added
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.

Test Case (jQuery not provided)