Modify ↓
Ticket #5172 (closed enhancement: invalid)
Make the context parameter behave more consistently
| Reported by: | lrbabe | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.4 |
| Component: | core | Version: | 1.3.2 |
| Keywords: | needsreview | Cc: | |
| Blocking: | Blocked by: |
Description
Currently the three following syntax do not result in the same context parameter:
$("div", document.getElementById("myId")); $("div", $("#myId")); $("div", "#myId");
Only the first one result in the context property to be properly set. The attached patch fix this issue. See related thread: http://groups.google.com/group/jquery-dev/browse_thread/thread/b8c414b373163895
Attachments
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.

