I am using sortable plugin of Jquery. This is my code:
$(element).sortable({
handle: ".handle",
placeholder: "drophover",
connectWith: '.day ul',
helper: "clone",
scroll: false,
revert: 100,
receive: function (event, ui) {
//ui.item.parent doesn't return ul in console.log. However ui.item outputs li in //console.log
});
Edit:
If I do $(ui.item).parent(), it still doesn't work. Attached is the image from my console.log

Please see that ul is not outputted and my length is 0.
2nd Edit: It looks like we can't get parent inside 'receive' event of sortable. If I try it inside update, it works.
this. – CoryDorning May 30 '12 at 14:16