vote up 1 vote down star

I'm trying to clone a droppable object using Jquery but the cloned object is not droppable.

$(document).ready(function(){
$("input[value='Add']").click(function(e){
e.preventDefault();
$("div.field:last").clone().insertAfter("div.field:last");
});

$(".field").droppable();

HTML

<div class="field">
Last Name<input type="text" value="" />
First Name<input type="text" value="" />
</div>
<div class="field">
Last Name<input type="text" value="" />
First Name<input type="text" value="" />
</div>
<input type="Submit" name="submit" value="Add" />

Firebug shows that the cloned object has the class ui-droppable as well, any idea why it wouldn't work?

EDIT
Setting bool(true) or chaining the cloned object with .droppable() is not working either

flag

3 Answers

vote up 2 vote down

You need to copy the events to the clone; pass true to clone():

$("div.field:last").clone(true).insertAfter("div.field:last");


You may also need to copy over some data from the original:

var original = $("div.field:last");
var clone = original.clone(true);
clone.data( 'droppable', jQuery.extend(true, {}, original.data('droppable')) );
/* Untested! */
link|flag
It didn't work even with clone(true) set. – SteD Jul 31 at 20:10
vote up 0 vote down

I think that the cloned object will have all the element attributes, but will have no attached events that droppable uses internally.

insertAfter returns you the inserted elements, you could set the cloned element as droppable on your click handler:

$("input[value='Add']").click(function(e){
  e.preventDefault();
  $("div.field:last").clone().insertAfter("div.field:last").droppable();
});
link|flag
Tried that but still not droppable – SteD Jul 31 at 20:12
vote up 0 vote down check

I found out a way to accomplish this, by using the .live, I'm using a plugin .livequery which functions quite similiar with .live

When you bind a "live" event it will bind to all current and future elements on the page

$("input[value='Add']").livequery("click", function(e){
e.preventDefault();
$("div.field:last").clone().insertAfter("div.field:last");
$("div.field").droppable();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.