$('.image').draggable({
revert:'invalid',
helper:'clone',
});
$('#content').droppable({
accept:'.image',
drop:function(event , ui{
$('<div>').appendTo('#content').dialog();
}
});
Dialog gets created but not within the CONTENT div. It gets created under the body ! why it doesn't append under CONTENT ?