Modify ↓
Ticket #6175 (closed bug: invalid)
syntax throws error that did not used to happen in 1.3.2
| Reported by: | epitka | Owned by: | |
|---|---|---|---|
| Priority: | Milestone: | 1.4.2 | |
| Component: | selector | Version: | 1.4.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
following used to work in 1.3.2
row.ddl = $row.find("[id$='_ddl']:option:selected");
and now it throws error. Following works and returns 1 object
row.ddl = $row.find("[id$='_ddl']");
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.

That's correct - there is no :option selector so jQuery is throwing an exception because of that.