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