Side navigation
#7316 closed bug (worksforme)
Opened October 26, 2010 01:13PM UTC
Closed November 02, 2010 02:42AM UTC
Last modified February 21, 2011 08:55PM UTC
draggable clone doesn't work, without clone works fine
Reported by: | veniamin.medvedev@gmail.com | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.5 |
Component: | manipulation | Version: | 1.4.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
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>
Attachments (0)
Change History (5)
Changed October 26, 2010 04:01PM UTC by comment:1
component: | unfiled → manipulation |
---|---|
keywords: | → needsreview |
priority: | undecided → low |
status: | new → open |
Changed November 02, 2010 02:42AM UTC by comment:2
resolution: | → worksforme |
---|---|
status: | open → closed |
If you want a separate draggable, apply it to the clone:
Changed November 02, 2010 02:43AM UTC by comment:3
keywords: | needsreview |
---|
Changed February 21, 2011 08:53PM UTC by comment:4
Replying to [comment:2 dmethvin]:
If you want a separate draggable, apply it to the clone: http://jsfiddle.net/mfcwU/4/
It doesn´t work with jquery 1.5 --with or without .clone( [ withDataAndEvents ], [ deepWithDataAndEvents ] )
Changed February 21, 2011 08:55PM UTC by comment:5
Fix should be coming in 1.5.1
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()