$(".dragItem").resizable({
maxHeight: 100,
maxWidth: 100,
minHeight: 50,
minWidth: 50,
aspectRatio: true
});
$('.dragItem').draggable({
containment: '#container',
helper: 'clone'
});
$('.container').droppable({
drop: function( event, ui ) {
ui.draggable.clone().appendTo(".container");
}
});