Hello,
Im trying to drag & drop elements dynamically added, but havent been having much sucess,the new elements added by "add item" dont drag and drop properly, could someone please tell me what is wrong with this code?
function additem() {
document.getElementById("draglist").innerHTML += '<ul class="dojoDndItem" id="' + item + '"><li class="taskdrag dojoDndHandle" id="drag-' + item + '" ><small>drag ' + item + '</small></li></ul>';
item = item + 1;
}
