#5241 closed bug (worksforme)
Periods and colons in jQuery id selectors
Reported by: | maros | Owned by: | john |
---|---|---|---|
Priority: | low | Milestone: | |
Component: | selector | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Dots and colons in jQuery selectors don't seem to work, although they are allowed by the W3C specification.
does not work $('#element.1224') <span id="element.1224"></span>
works $('#element_1224') <span id="element_1224"></span>
Change History (4)
comment:1 Changed 13 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
comment:2 Changed 12 years ago by
Priority: | major → low |
---|
Note: See
TracTickets for help on using
tickets.
Special characters must be escaped with
\\
.