Ticket #2588 (closed bug: invalid)
$ function does not find elements with several css classes
| Reported by: | Markus.Staab | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.2.4 |
| Component: | core | Version: | 1.2.3 |
| Keywords: | core, $, css, selectors | Cc: | |
| Blocking: | Blocked by: |
Description
JQuery does not allow to select a element with several css classes to be searched.
<div class="class1 class2 class3">1235</div>
$(".class2") won't match this div, although it is common to have several css classes on one element... this is also valid xhtml..
Attachments
Change History
Changed 5 years ago by davidserduke
-
attachment
jquery_test.html
added
comment:1 Changed 5 years ago by davidserduke
- Status changed from new to closed
- Resolution set to worksforme
I created the above test case based on the bug description and it works for me. Is there some version of some browser you are using that doesn't work? Or does the test case not reflect the problem you are having? If either of those are true feel free to reopen the ticket with more information.
comment:2 Changed 5 years ago by Markus.Staab
- Status changed from closed to reopened
- Resolution worksforme deleted
enclosed you will find my usecase
comment:3 Changed 5 years ago by scott.gonzal
- Status changed from reopened to closed
- Resolution set to invalid
Your test case uses $("rex-metainfo-cat") instead of $(".rex-metainfo-cat"). You're searching for elements of type "rex-metainfo-cat" not elements with the class "rex-metainfo-cat".
comment:4 Changed 5 years ago by Markus.Staab
- Status changed from closed to reopened
- Resolution invalid deleted
hmm you are right... now with your addition i have another problem..
the rows which are fadded in are very small.. looks like the colspan is not taken into account...?
Sorry for getting offtopic..
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

test case