Hello all, I'm working on a drag and drop playlist utility and I've come across a problem maybe some of you are more familiar with. I want to be able to drag an <ol> element with all it's children and drop into a droppable. I understand I have to make the <li>s droppable before I make the <ol> droppable, which I'm trying to do with this(once the <li>s are declared dropppable):
var olArray = document.getElementsByTagName('ol');
for(var count = (olArray.length - 1); count > 0; count--){
new Draggable(olArray[count].getAttribute('id'), {superghosting: true, detached: true});
}
However so far with no luck. Does anyone have any experience with this?
