Opened 15 years ago
Closed 13 years ago
#3344 closed bug (duplicate)
wrapAll should probably call clone(true)
Reported by: | waterson | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.3 |
Component: | core | Version: | 1.2.6 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Right now, wrap calls "clone()" instead of "clone(true)". This has the effect of causing any event handlers on the wrapping node to be lost; for example,
$("#someElement").wrap($("<div>").click(function() { alert("hi"); }));
ends up being equivalent to:
$("#someElement").wrap($("<div>"));
This is not hard to work around, but it would be nice to fix!
Attachments (1)
Change History (4)
Changed 15 years ago by
Attachment: | 3344.patch added |
---|
comment:3 Changed 13 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Dup of #2977 (fixed).
Note: See
TracTickets for help on using
tickets.
Proposed changes