Hello.
Is there other ways to add a cloned element to an container than:
$(".product").draggable({
helper: 'clone'
});
$("#container").append(ui.draggable.clone());
append just puts the element after the last element in #container. I want to decide where the position should be.