#107 closed enhancement (fixed)
There should be a .clone()
Reported by: | john | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.0 |
Component: | core | Version: | 1.0 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If .appendTo(), and .prependTo() are going to be kept, there needs to be a .clone() function.
Change History (2)
comment:1 Changed 16 years ago by
comment:2 Changed 16 years ago by
Priority: | major → minor |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Added in SVN rev 213.
Note: See
TracTickets for help on using
tickets.
Hack with latest SVN:
$.fn.clone = function() {
};
Usage:
$('#the_tr').clone().appendTo('#destination_table');