Ticket #7316 (closed bug: worksforme)
draggable clone doesn't work, without clone works fine
| Reported by: | veniamin.medvedev@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | 1.5 |
| Component: | manipulation | Version: | 1.4.3 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
<script src="jquery-1.4.3.min.js"></script> <script src="jquery-ui.min.js"></script> <html> <head> </head> <body> </body> </html>
<script>
var icon = $("<div style='width:100px;height:100px;border-style:solid;'>");
icon.draggable({ drag:function(e,ui){}});
icon.clone(true).appendTo($("body"))
</script>
Change History
comment:1 Changed 3 years ago by rwaldron
- Keywords needsreview added
- Priority changed from undecided to low
- Status changed from new to open
- Component changed from unfiled to manipulation
comment:2 follow-up: ↓ 4 Changed 3 years ago by dmethvin
- Status changed from open to closed
- Resolution set to worksforme
If you want a separate draggable, apply it to the clone:
comment:4 in reply to: ↑ 2 Changed 2 years ago by tonellimartin@…
Replying to dmethvin:
If you want a separate draggable, apply it to the clone:
It doesn´t work with jquery 1.5 --with or without .clone( [ withDataAndEvents ], [ deepWithDataAndEvents ] )
http://jsfiddle.net/mfcwU/26/ http://jsfiddle.net/mfcwU/27/ http://jsfiddle.net/mfcwU/28/
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

Confirmed http://jsfiddle.net/rwaldron/mfcwU/2/
This needs to be reviewed further to determine if it's an issue with jQuery UI or with jQuery clone()