Modify ↓
Ticket #2926 (closed bug: invalid)
tilde in id prevents jquery from selecting the object
| Reported by: | deg | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.3 |
| Component: | core | Version: | 1.2.5 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
if you use a tilde in a an id for example 'a~b' then this object is no longer selectable. $("#a~b") doesn't seem to work. Bug or feature? :)
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.

You can escape characters by prepending
so it will be: $("#a
~b")