I have a html structure like this
<div id='dropzone'>
<ul id='filelist'>
<li class='fileitem'></li>
<li......
....
....
</ul>
</div>
Jquery UI droppables are
$('#dropzone').droppable();
$('.fileitem').droppable({greedy:true});
Dropping files on dropzone working fine. Now my problem is i would like to drop a fileitem on another fileitem it is not working, when i try to do this it treats like i am dropping fileitem on dropzone.